Fix: Explicitly pass MySQL credentials to bot service in docker-compose.yml

This commit is contained in:
Marco Gallegos
2025-12-14 11:40:46 -06:00
parent c0793db73c
commit b0d30928f1

View File

@@ -7,6 +7,10 @@ services:
restart: always
env_file:
- .env
environment:
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${MYSQL_DATABASE}
depends_on:
- db
volumes: