YAML Linting Fixes: - Fix comment spacing in lldap compose file - Fix comment indentation in jellyfin compose file File Cleanup: - Remove deprecated nginxproxymanager directory - Traefik replaces this functionality Labeler Configuration: - Update to actions/labeler@v5 format - Use changed-files objects structure Dependency Review: - Add continue-on-error for private repos - Requires GitHub Advanced Security
24 lines
669 B
YAML
24 lines
669 B
YAML
services:
|
|
lldap:
|
|
container_name: lldap
|
|
image: lldap/lldap:stable
|
|
ports:
|
|
- "3890:3890" # LDAP
|
|
- "17170:17170" # Web UI
|
|
env_file: .env
|
|
volumes:
|
|
- ./data:/data
|
|
restart: unless-stopped
|
|
networks:
|
|
- homelab
|
|
labels:
|
|
traefik.enable: true
|
|
traefik.http.routers.lldap.rule: Host(`lldap.fig.systems`) || Host(`lldap.edfig.dev`)
|
|
traefik.http.routers.lldap.entrypoints: websecure
|
|
traefik.http.routers.lldap.tls.certresolver: letsencrypt
|
|
traefik.http.services.lldap.loadbalancer.server.port: 17170
|
|
traefik.http.routers.lldap.middlewares: tinyauth
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|