ldap added

This commit is contained in:
Jakub Kropáček 2024-08-08 12:10:16 +02:00
parent a63f746f78
commit e46ca9171c
6 changed files with 26 additions and 4 deletions

View file

@ -6,6 +6,7 @@ servers = [
"services": [
"traefik", "joplin", "kanboard",
"ntfy", "uptime-kuma", "usememos",
"authentik-ldap",
],
},

6
poetry.lock generated
View file

@ -741,13 +741,13 @@ requests = ">=2.0.0"
[[package]]
name = "setuptools"
version = "71.1.0"
version = "72.1.0"
description = "Easily download, build, install, upgrade, and uninstall Python packages"
optional = false
python-versions = ">=3.8"
files = [
{file = "setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855"},
{file = "setuptools-71.1.0.tar.gz", hash = "sha256:032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"},
{file = "setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1"},
{file = "setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec"},
]
[package.extras]

View file

@ -0,0 +1,3 @@
AUTHENTIK_HOST=https://auth.katuwoss.dev/
AUTHENTIK_INSECURE=false
AUTHENTIK_TOKEN={{ password['15aa994d-7051-42d5-a2eb-8052307bade0'] }}

View file

@ -0,0 +1,16 @@
networks:
traefik-net:
external: true
name: traefik-net
services:
ldap:
image: ghcr.io/goauthentik/ldap
networks:
- default
- traefik-net
ports:
- 389:3389
- 636:6636
env_file:
- .env

View file

@ -1,4 +1,5 @@
UPLOAD_LOCATION=/mnt/data/immich
EXTERNAL_LOCATION=/mnt/data/immich_external
DB_PASSWORD={{ password['fc4c389b-f598-4f42-940b-eaeabecd8359'] }}
DB_HOSTNAME=database
@ -8,4 +9,4 @@ DB_DATABASE_NAME=immich
REDIS_HOSTNAME=redis
EXTERNAL_HOST=immich.togetherdays.cz
IMMICH_VERSION=v1.110.0
IMMICH_VERSION=v1.111.0

View file

@ -21,6 +21,7 @@ services:
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- ${EXTERNAL_LOCATION}:/mnt/external
- /etc/localtime:/etc/localtime:ro
env_file:
- .env