mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-26 01:15:50 +00:00
Adjastet port and credentionals for database
This commit is contained in:
parent
0962ed7e8f
commit
b97b292d49
1 changed files with 6 additions and 6 deletions
|
@ -4,20 +4,20 @@ services:
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql:8.0
|
image: mysql:8.0
|
||||||
ports:
|
ports:
|
||||||
- "3306:3306"
|
- "3506:3306"
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ROOT_PASSWORD=
|
- MYSQL_ROOT_PASSWORD=
|
||||||
- MYSQL_ALLOW_EMPTY_PASSWORD=true
|
- MYSQL_ALLOW_EMPTY_PASSWORD=true
|
||||||
- MYSQL_USER=petclinic
|
- MYSQL_USER=Nicolae
|
||||||
- MYSQL_PASSWORD=petclinic
|
- MYSQL_PASSWORD=12345678
|
||||||
- MYSQL_DATABASE=petclinic
|
- MYSQL_DATABASE=petclinic
|
||||||
volumes:
|
volumes:
|
||||||
- "./conf.d:/etc/mysql/conf.d:ro"
|
- "./conf.d:/etc/mysql/conf.d:ro"
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:15.2
|
image: postgres:15.2
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5430:5432"
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_PASSWORD=petclinic
|
- POSTGRES_PASSWORD=Nicolae
|
||||||
- POSTGRES_USER=petclinic
|
- POSTGRES_USER=12345678
|
||||||
- POSTGRES_DB=petclinic
|
- POSTGRES_DB=petclinic
|
||||||
|
|
Loading…
Reference in a new issue