authelia/docker-compose.yml

38 lines
821 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: .
environment:
- LDAP_URL=ldap://ldap
- LDAP_USERS_DN=dc=example,dc=com
- TOTP_SECRET=GRWGIJS6IRHVEODVNRCXCOBMJ5AGC6ZE
- JWT_SECRET=unsecure_secret
- JWT_EXPIRATION_TIME=1h
2016-12-10 00:47:58 +00:00
- PORT=80
depends_on:
- ldap
expose:
- "80"
2016-12-17 20:02:26 +00:00
restart: always
2016-12-10 00:47:58 +00:00
ldap:
image: osixia/openldap:1.1.7
environment:
- LDAP_ORGANISATION=MyCompany
- LDAP_DOMAIN=example.com
- LDAP_ADMIN_PASSWORD=password
2016-12-10 00:47:58 +00:00
expose:
- "389"
nginx:
image: nginx:alpine
volumes:
- ./nginx_conf/nginx.conf:/etc/nginx/nginx.conf
- ./nginx_conf/index.html:/usr/share/nginx/html/index.html
- ./nginx_conf/secret.html:/usr/share/nginx/html/secret.html
2016-12-10 00:47:58 +00:00
depends_on:
- auth
2016-12-10 00:47:58 +00:00
ports:
- "8080:80"