fix: Debug variables
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 35s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 51s
Deploy to Staging / Verify Staging (pull_request) Successful in 8s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 35s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 51s
Deploy to Staging / Verify Staging (pull_request) Successful in 8s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
This commit is contained in:
@@ -11,6 +11,7 @@ services:
|
||||
command:
|
||||
- --configFile=/etc/traefik/traefik.yml
|
||||
environment:
|
||||
LOG_LEVEL: debug
|
||||
CLOUDFLARE_DNS_API_TOKEN_FILE: /run/secrets/cloudflare-dns-token
|
||||
ports:
|
||||
- "80:80"
|
||||
@@ -112,6 +113,7 @@ services:
|
||||
NODE_ENV: production
|
||||
CONFIG_PATH: /app/config/production.yml
|
||||
SECRETS_DIR: /run/secrets
|
||||
LOG_LEVEL: debug
|
||||
# Service references
|
||||
DATABASE_HOST: mvp-postgres
|
||||
REDIS_HOST: mvp-redis
|
||||
@@ -192,7 +194,7 @@ services:
|
||||
REDIS_PORT: 6379
|
||||
REDIS_DB: 1
|
||||
volumes:
|
||||
- vin-debug:/tmp/vin-debug
|
||||
- /tmp/vin-debug:/tmp/vin-debug
|
||||
networks:
|
||||
- backend
|
||||
- database
|
||||
@@ -220,8 +222,9 @@ services:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD_FILE: /run/secrets/postgres-password
|
||||
POSTGRES_INITDB_ARGS: --encoding=UTF8
|
||||
POSTGRES_LOG_STATEMENT: ${POSTGRES_LOG_STATEMENT:-ddl}
|
||||
POSTGRES_LOG_MIN_DURATION_STATEMENT: ${POSTGRES_LOG_MIN_DURATION:-500}
|
||||
LOG_LEVEL: debug
|
||||
POSTGRES_LOG_STATEMENT: all
|
||||
POSTGRES_LOG_MIN_DURATION_STATEMENT: 0
|
||||
PGDATA: /var/lib/postgresql/data
|
||||
volumes:
|
||||
- mvp_postgres_data:/var/lib/postgresql/data
|
||||
@@ -248,7 +251,9 @@ services:
|
||||
image: ${REGISTRY_MIRRORS:-git.motovaultpro.com/egullickson/mirrors}/redis:8.4-alpine
|
||||
container_name: mvp-redis
|
||||
restart: unless-stopped
|
||||
command: redis-server --appendonly yes --loglevel ${REDIS_LOGLEVEL:-notice}
|
||||
command: redis-server --appendonly yes --loglevel ${LOG_LEVEL:-info}
|
||||
environment:
|
||||
LOG_LEVEL: debug
|
||||
volumes:
|
||||
- mvp_redis_data:/data
|
||||
networks:
|
||||
@@ -398,5 +403,3 @@ volumes:
|
||||
name: mvp_loki_data
|
||||
mvp_grafana_data:
|
||||
name: mvp_grafana_data
|
||||
vin-debug:
|
||||
name: mvp_vin_debug
|
||||
|
||||
Reference in New Issue
Block a user