modifiche a docker-compose.yml porta mysql da 3308 a 3309
This commit is contained in:
parent
e976fe550a
commit
1d2f42e144
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ services:
|
|||
environment:
|
||||
NODE_ENV: production
|
||||
DB_HOST: mysql
|
||||
DB_PORT: 3308
|
||||
DB_PORT: 3309
|
||||
PORT: 3007
|
||||
FRONTEND_URL: https://prenotazionifrontend2.andreavillari.it
|
||||
AUTH_URL: https://prenotazionibackend2.andreavillari.it
|
||||
|
|
@ -34,7 +34,7 @@ services:
|
|||
- dbdata:/var/lib/mysql
|
||||
- ./initdb:/docker-entrypoint-initdb.d # opzionale: script SQL iniziali
|
||||
ports:
|
||||
- "127.0.0.1:3308:3306"
|
||||
- "127.0.0.1:3309:3306"
|
||||
healthcheck:
|
||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
|
||||
interval: 5s
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue