Expose mysql port to internet for dev purposes during hackathon

This commit is contained in:
Christbru 2025-10-18 23:24:32 -05:00
commit c95ccda282

View file

@ -15,6 +15,8 @@ services:
rust-engine:
image: ghcr.io/${REPO_NAME_LOWER}/rust-engine:${IMAGE_TAG}
restart: always
ports:
- "3306:3306"
environment:
- DATABASE_URL=mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@mysql:3306/${MYSQL_DATABASE}
depends_on: