From dcda2d3426a475e74394a6f879a16e0e6003c84e Mon Sep 17 00:00:00 2001 From: "Patrik J. Braun" Date: Wed, 4 Jan 2023 23:19:14 +0100 Subject: [PATCH] Add hint for debug logging in docker compose files --- docker/docker-compose/default/docker-compose.yml | 2 +- docker/docker-compose/pigallery2-only/docker-compose.yml | 2 +- docker/docker-compose/with-mysql/docker-compose.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/docker-compose/default/docker-compose.yml b/docker/docker-compose/default/docker-compose.yml index e4a4a6df..ca65eacc 100644 --- a/docker/docker-compose/default/docker-compose.yml +++ b/docker/docker-compose/default/docker-compose.yml @@ -17,7 +17,7 @@ services: image: bpatrik/pigallery2:latest container_name: pigallery2 environment: - - NODE_ENV=production + - NODE_ENV=production # set to 'debug' for full debug logging volumes: - "./pigallery2/config:/app/data/config" # CHANGE ME - "db-data:/app/data/db" diff --git a/docker/docker-compose/pigallery2-only/docker-compose.yml b/docker/docker-compose/pigallery2-only/docker-compose.yml index 161487ea..523e03bf 100644 --- a/docker/docker-compose/pigallery2-only/docker-compose.yml +++ b/docker/docker-compose/pigallery2-only/docker-compose.yml @@ -4,7 +4,7 @@ services: image: bpatrik/pigallery2:latest container_name: pigallery2 environment: - - NODE_ENV=production + - NODE_ENV=production # set to 'debug' for full debug logging volumes: - "./pigallery2/config:/app/data/config" # CHANGE ME - "db-data:/app/data/db" diff --git a/docker/docker-compose/with-mysql/docker-compose.yml b/docker/docker-compose/with-mysql/docker-compose.yml index d691dbfe..020df438 100644 --- a/docker/docker-compose/with-mysql/docker-compose.yml +++ b/docker/docker-compose/with-mysql/docker-compose.yml @@ -29,7 +29,7 @@ services: command: sh -c 'bin/wait-for pigallery-db:3306 -- --Server-Database-mysql-host=pigallery-db --Server-Database-mysql-username=pigallery2 --Server-Database-mysql-password=pigallery2_pass --Server-Database-mysql-database=pigallery2' container_name: pigallery2 environment: - - NODE_ENV=production + - NODE_ENV=production # set to 'debug' for full debug logging volumes: - "./pigallery2/config:/app/data/config" # CHANGE ME - "db-data:/app/data/db"