Skip to content

Commit

Permalink
tested different port configuration in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Mar 31, 2024
1 parent 88f248c commit 7117dec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
expose:
- "50051"
environment:
- DB_DSN=root:${DB_ROOT_PASSWORD}@tcp(db:${DB_PORT:-3306})/${DB_NAME}?charset=utf8mb4&parseTime=True&loc=Local
- DB_DSN=root:${DB_ROOT_PASSWORD}@tcp(db:3306)/${DB_NAME}?charset=utf8mb4&parseTime=True&loc=Local
- ENVIRONMENT=${ENVIRONMENT:-dev}
- DB_NAME=${DB_NAME}
- SENTRY_DSN=${SENTRY_DSN}
Expand All @@ -36,7 +36,7 @@ services:
image: bitnami/mariadb:latest
restart: unless-stopped
expose:
- "${DB_PORT:-3306}"
- 3306
environment:
- MARIADB_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
- MARIADB_DATABASE=${DB_NAME}
Expand Down

0 comments on commit 7117dec

Please sign in to comment.