gremlin: auto-fix swarm/lldap.yaml (14 issues fixed)
Some checks are pending
Deploy on push / detect (push) Waiting to run
Deploy on push / deploy_swarm (push) Blocked by required conditions
Deploy on push / deploy_compose (push) Blocked by required conditions

- Removed version: key
  - Removed depends_on from "lldap"
  - Fixed PUID to 1964 for "lldap-db"
  - Fixed PGID to 1964 for "lldap-db"
  - Fixed PUID to 1964 for "lldap"
  - Fixed PGID to 1964 for "lldap"
  - Added default restart_policy for "lldap-db"
  - Added aarch64 exclusion for "lldap-db"
  - Added arm exclusion for "lldap-db"
  - Added default restart_policy for "lldap"
  - Added aarch64 exclusion for "lldap"
  - Added arm exclusion for "lldap"
  - Stamped gremlin.version: 2026-04-1
  - Added diun.enable: "true" to "lldap"
This commit is contained in:
traveler 2026-04-30 13:49:02 -05:00
parent 3ab644ffef
commit 99e9dd41a4

View file

@ -1,4 +1,3 @@
version: "3.9"
networks: networks:
netgrimoire: netgrimoire:
@ -12,18 +11,26 @@ services:
#user: "1001:998" #user: "1001:998"
environment: environment:
TZ: America/Chicago TZ: America/Chicago
PUID: 1001 PUID: "1964"
PGID: 998 PGID: "1964"
POSTGRES_DB: lldap POSTGRES_DB: lldap
POSTGRES_USER: lldap POSTGRES_USER: lldap
POSTGRES_PASSWORD: F@lcon13 POSTGRES_PASSWORD: F@lcon13
volumes: volumes:
- /DockerVol/lldap-db/data:/var/lib/postgresql/data - /DockerVol/lldap-db/data:/var/lib/postgresql/data
deploy: deploy:
restart_policy:
condition: any
delay: 5s
max_attempts: 3
window: 120s
placement: placement:
constraints: constraints:
- node.platform.arch != arm
- node.platform.arch != aarch64
- node.hostname == docker4 - node.hostname == docker4
labels: labels:
gremlin.version: "2026-04-1"
diun.enable: true diun.enable: true
gremlin.caddy.skip: "true" gremlin.caddy.skip: "true"
gremlin.homepage.skip: "true" gremlin.homepage.skip: "true"
@ -38,8 +45,8 @@ services:
#user: "1001:998" #user: "1001:998"
environment: environment:
TZ: America/Chicago TZ: America/Chicago
PUID: 1001 PUID: "1964"
PGID: 998 PGID: "1964"
# Base DN # Base DN
- LLDAP_LDAP_BASE_DN=dc=netgrimoire,dc=com - LLDAP_LDAP_BASE_DN=dc=netgrimoire,dc=com
@ -75,10 +82,18 @@ services:
# mode: ingress # mode: ingress
deploy: deploy:
restart_policy:
condition: any
delay: 5s
max_attempts: 3
window: 120s
placement: placement:
constraints: constraints:
- node.platform.arch != arm
- node.platform.arch != aarch64
- node.hostname == docker4 - node.hostname == docker4
labels: labels:
diun.enable: "true"
# Homepage # Homepage
- homepage.group=Authentication - homepage.group=Authentication
- homepage.name=LLDAP - homepage.name=LLDAP
@ -98,6 +113,5 @@ services:
# Diun # Diun
- diun.enable=true - diun.enable=true
depends_on:
- lldap-db - lldap-db
restart: unless-stopped restart: unless-stopped