27 lines
494 B
YAML
27 lines
494 B
YAML
services:
|
|
authelia:
|
|
image: 'authelia/authelia:4.38'
|
|
container_name: 'authelia'
|
|
volumes:
|
|
- './volumes/authelia:/config'
|
|
networks:
|
|
- auth
|
|
restart: 'unless-stopped'
|
|
environment:
|
|
TZ: 'America/New_York'
|
|
|
|
redis:
|
|
image: 'redis:alpine'
|
|
container_name: 'redis'
|
|
volumes:
|
|
- './volumes/redis:/data'
|
|
networks:
|
|
- auth
|
|
restart: 'unless-stopped'
|
|
environment:
|
|
TZ: 'America/New_York'
|
|
|
|
networks:
|
|
auth:
|
|
driver: 'bridge'
|