Remove inline comments from docker-compose files
This commit is contained in:
@@ -4,9 +4,6 @@ services:
|
|||||||
postgres:
|
postgres:
|
||||||
image: postgres:15-alpine
|
image: postgres:15-alpine
|
||||||
container_name: picpeak-postgres
|
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"
|
userns_mode: "host"
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: ${DB_USER:-picpeak}
|
POSTGRES_USER: ${DB_USER:-picpeak}
|
||||||
@@ -26,9 +23,6 @@ services:
|
|||||||
redis:
|
redis:
|
||||||
image: redis:7-alpine
|
image: redis:7-alpine
|
||||||
container_name: picpeak-redis
|
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"
|
userns_mode: "host"
|
||||||
command: redis-server --requirepass ${REDIS_PASSWORD}
|
command: redis-server --requirepass ${REDIS_PASSWORD}
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -60,9 +60,6 @@ services:
|
|||||||
image: postgres:15-alpine
|
image: postgres:15-alpine
|
||||||
container_name: picpeak-postgres
|
container_name: picpeak-postgres
|
||||||
restart: unless-stopped
|
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"
|
userns_mode: "host"
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=${DB_USER}
|
- POSTGRES_USER=${DB_USER}
|
||||||
@@ -87,9 +84,6 @@ services:
|
|||||||
image: redis:7-alpine
|
image: redis:7-alpine
|
||||||
container_name: picpeak-redis
|
container_name: picpeak-redis
|
||||||
restart: unless-stopped
|
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"
|
userns_mode: "host"
|
||||||
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD:-picpeak_redis_pass}
|
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD:-picpeak_redis_pass}
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user