mirror of https://github.com/authelia/authelia.git
15 lines
336 B
YAML
15 lines
336 B
YAML
---
|
|
services:
|
|
redis:
|
|
image: redis:7.4-alpine
|
|
command: /entrypoint.sh master
|
|
expose:
|
|
- "6379"
|
|
volumes:
|
|
- ./example/compose/redis/templates:/templates
|
|
- ./example/compose/redis/users.acl:/data/users.acl
|
|
- ./example/compose/redis/entrypoint.sh:/entrypoint.sh
|
|
networks:
|
|
- authelianet
|
|
...
|