Remove inline comments from docker-compose files

This commit is contained in:
Claude
2025-11-06 19:55:17 +00:00
parent b2ce011545
commit 62e6a67cb7
2 changed files with 0 additions and 12 deletions
-6
View File
@@ -4,9 +4,6 @@ services:
postgres:
image: postgres:15-alpine
container_name: picpeak-postgres
# User namespace configuration for Docker daemon sysctl compatibility
# Fixes OCI runtime errors on systems with custom sysctl configurations
# See: https://github.com/the-luap/picpeak/issues/46
userns_mode: "host"
environment:
POSTGRES_USER: ${DB_USER:-picpeak}
@@ -26,9 +23,6 @@ services:
redis:
image: redis:7-alpine
container_name: picpeak-redis
# User namespace configuration for Docker daemon sysctl compatibility
# Fixes OCI runtime errors on systems with custom sysctl configurations
# See: https://github.com/the-luap/picpeak/issues/46
userns_mode: "host"
command: redis-server --requirepass ${REDIS_PASSWORD}
volumes:
-6
View File
@@ -60,9 +60,6 @@ services:
image: postgres:15-alpine
container_name: picpeak-postgres
restart: unless-stopped
# User namespace configuration for Docker daemon sysctl compatibility
# Fixes OCI runtime errors on systems with custom sysctl configurations
# See: https://github.com/the-luap/picpeak/issues/46
userns_mode: "host"
environment:
- POSTGRES_USER=${DB_USER}
@@ -87,9 +84,6 @@ services:
image: redis:7-alpine
container_name: picpeak-redis
restart: unless-stopped
# User namespace configuration for Docker daemon sysctl compatibility
# Fixes OCI runtime errors on systems with custom sysctl configurations
# See: https://github.com/the-luap/picpeak/issues/46
userns_mode: "host"
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD:-picpeak_redis_pass}
volumes: