dnpm: Make volumes in /var/cache writable for containers

This commit is contained in:
Niklas Sombert 2025-01-21 16:10:01 +01:00
parent 50ee54078e
commit 30a6c1e4d9
1 changed files with 3 additions and 3 deletions

View File

@ -12,13 +12,13 @@ services:
MYSQL_ROOT_HOST: "%" MYSQL_ROOT_HOST: "%"
MYSQL_ROOT_PASSWORD: ${DNPM_MYSQL_ROOT_PASSWORD} MYSQL_ROOT_PASSWORD: ${DNPM_MYSQL_ROOT_PASSWORD}
volumes: volumes:
- /var/cache/bridgehead/dnpm/mysql:/var/lib/mysql - /var/cache/bridgehead/dnpm/mysql:/var/lib/mysql:Z
dnpm-authup: dnpm-authup:
image: authup/authup:latest image: authup/authup:latest
container_name: bridgehead-dnpm-authup container_name: bridgehead-dnpm-authup
volumes: volumes:
- /var/cache/bridgehead/dnpm/authup:/usr/src/app/writable - /var/cache/bridgehead/dnpm/authup:/usr/src/app/writable:Z
depends_on: depends_on:
dnpm-mysql: dnpm-mysql:
condition: service_healthy condition: service_healthy
@ -68,7 +68,7 @@ services:
- AUTHUP_URL=robot://system:${DNPM_AUTHUP_SECRET}@http://dnpm-authup:3000 - AUTHUP_URL=robot://system:${DNPM_AUTHUP_SECRET}@http://dnpm-authup:3000
volumes: volumes:
- /etc/bridgehead/dnpm/config:/dnpm_config - /etc/bridgehead/dnpm/config:/dnpm_config
- /var/cache/bridgehead/dnpm/backend-data:/dnpm_data - /var/cache/bridgehead/dnpm/backend-data:/dnpm_data:Z
depends_on: depends_on:
dnpm-authup: dnpm-authup:
condition: service_healthy condition: service_healthy