mirror of https://github.com/docker/docs.git
Merge pull request #16310 from jrzabott/main
Fixed typo on yml file from Java Tutorial, it was breaking build.
This commit is contained in:
commit
4b96772ea7
|
@ -133,8 +133,8 @@ services:
|
|||
context: .
|
||||
target: development
|
||||
ports:
|
||||
- 8000:8000
|
||||
- 8080:8080
|
||||
- "8000:8000"
|
||||
- "8080:8080"
|
||||
environment:
|
||||
- SERVER_PORT=8080
|
||||
- MYSQL_URL=jdbc:mysql://mysqlserver/petclinic
|
||||
|
@ -146,7 +146,7 @@ services:
|
|||
mysqlserver:
|
||||
image: mysql:8.0
|
||||
ports:
|
||||
- 3306:3306
|
||||
- "3306:3306"
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=
|
||||
- MYSQL_ALLOW_EMPTY_PASSWORD=true
|
||||
|
|
Loading…
Reference in New Issue