Update docker-compose to expose MySQL on port 3366

This commit is contained in:
Vincent Guillet
2025-05-15 15:24:59 +02:00
parent 7c89d637f7
commit 0f8f09e0d7

View File

@@ -8,8 +8,8 @@ services:
MYSQL_DATABASE: testdb
MYSQL_USER: user
MYSQL_PASSWORD: password
# ports:
# - "3306:3306"
ports:
- "3366:3306"
volumes:
- mysql_data:/var/lib/mysql
@@ -26,13 +26,5 @@ services:
DB_USER: user
DB_PASSWORD: password
volumes:
mysql_data: