1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Lukáš Kucharczyk c311fa2798
openldap: add 2023-12-05 12:11:14 +01:00
Lukáš Kucharczyk 8f3069776d
sabnzbd: add 2023-12-05 11:48:35 +01:00
3 changed files with 44 additions and 0 deletions

View File

@ -12,6 +12,8 @@ include:
- services/sonarr.yml
- services/postgres.yml
- services/nextcloud.yml
- services/sabnzbd.yml
- services/openldap.yml
services:

26
services/openldap.yml Normal file
View File

@ -0,0 +1,26 @@
---
services:
openldap:
image: osixia/openldap:latest
container_name: openldap
networks:
public:
ipv4_address: 192.168.240.42
ports:
- 389:389
- 636:636
volumes:
- "${DOCKER_STORAGE_PATH}/openldap/config:/etc/ldap/slapd.d"
- "${DOCKER_STORAGE_PATH}/openldap/data:/var/lib/ldap"
environment:
- LDAP_ORGANISATION=Homelab
- LDAP_DOMAIN=${DOMAIN}
- LDAP_ADMIN_PASSWORD=kral
- LDAP_OPENLDAP_UID=${PUID}
- LDAP_OPENLDAP_GID=${PGID}
- LDAP_READONLY_USER=true
- LDAP_READONLY_USER_USERNAME=readonly
- LDAP_READONLY_USER_PASSWORD=readonly
profiles:
- base
restart: unless-stopped

16
services/sabnzbd.yml Normal file
View File

@ -0,0 +1,16 @@
---
services:
sabnzbd:
image: linuxserver/sabnzbd:latest
container_name: sabnzbd
networks:
public:
ipv4_address: 192.168.240.41
volumes:
- "${DOCKER_STORAGE_PATH}/sabnzbd:/config"
- "${DOWNLOADS_PATH}/sabnzbd:/downloads"
- "${DOWNLOADS_PATH}/sabnzbd-incomplete:/incomplete-downloads"
- "${MEDIA_PATH}:/media"
profiles:
- base
restart: unless-stopped