diff --git a/docker-compose.production.yml b/docker-compose.production.yml index 212daa1..c0c869d 100644 --- a/docker-compose.production.yml +++ b/docker-compose.production.yml @@ -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: diff --git a/docker-compose.yml b/docker-compose.yml index f661437..b23f625 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: