authelia/docker-compose.yml

35 lines
829 B
YAML
Raw Normal View History

2016-12-10 00:47:58 +00:00
version: '2'
services:
auth:
2016-12-10 00:47:58 +00:00
build: .
depends_on:
- ldap
2016-12-17 20:02:26 +00:00
restart: always
volumes:
- ./config.template.yml:/etc/auth-server/config.yml:ro
- ./notifications:/var/lib/auth-server/notifications
2016-12-10 00:47:58 +00:00
ldap:
image: dinkel/openldap
2016-12-10 00:47:58 +00:00
environment:
- SLAPD_ORGANISATION=MyCompany
- SLAPD_DOMAIN=example.com
- SLAPD_PASSWORD=password
2016-12-10 00:47:58 +00:00
expose:
- "389"
volumes:
- ./example/ldap:/etc/ldap.dist/prepopulate
2016-12-10 00:47:58 +00:00
nginx:
image: nginx:alpine
volumes:
- ./example/nginx_conf/nginx.conf:/etc/nginx/nginx.conf
- ./example/nginx_conf/index.html:/usr/share/nginx/html/index.html
- ./example/nginx_conf/secret.html:/usr/share/nginx/html/secret.html
- ./example/nginx_conf/ssl:/etc/ssl
2016-12-10 00:47:58 +00:00
depends_on:
- auth
2016-12-10 00:47:58 +00:00
ports:
2017-01-21 16:41:06 +00:00
- "8080:443"