docker/ldap/compose.yaml
2023-12-01 15:21:07 +01:00

25 lines
365 B
YAML

---
services:
install_site:
build: install_site
environment:
- BASE_URL
- EMAIL
volumes:
- certs:/etc/letsencrypt/
- certbotroot:/var/www/certbot/
ldap:
build: .
ports:
- "389:389"
- "636:636"
env_file:
.env
volumes:
- certs:/etc/letsencrypt/:ro
volumes:
certs:
external: true