diff --git a/lldap-docker-compose.yml b/lldap-docker-compose.yml new file mode 100644 index 0000000..9cbe265 --- /dev/null +++ b/lldap-docker-compose.yml @@ -0,0 +1,20 @@ +# docker-compose.yml +version: "3.8" +services: + lldap: + image: nitowa/lldap:latest + ports: ["3890:3890", "17170:80"] + volumes: ["./lldap_data:/data"] + restart: unless-stopped + environment: + LLDAP_JWT_SECRET: "superstarkesgeheimnis123" + LLDAP_LDAP_BASE_DN: "dc=schoedl,dc=local" + + authelia: + image: authelia/authelia:latest + ports: ["9091:9091"] + volumes: ["./authelia:/config"] + restart: unless-stopped + environment: + TZ: Europe/Berlin + \ No newline at end of file