mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
Remove mysql from the docker-compose file
This commit is contained in:
parent
f80905648c
commit
90d10b7043
1 changed files with 10 additions and 10 deletions
|
@ -5,18 +5,18 @@ services:
|
|||
ports:
|
||||
- "8080:8080"
|
||||
links:
|
||||
- mysql:mysql
|
||||
# - mysql:mysql
|
||||
- selenium
|
||||
command: java -jar ./target/*.jar
|
||||
mysql:
|
||||
image: mysql
|
||||
ports:
|
||||
- "3306:3306"
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root
|
||||
- MYSQL_DATABASE=test
|
||||
volumes:
|
||||
- "./conf.d:/etc/mysql/conf.d:ro"
|
||||
# mysql:
|
||||
# image: mysql
|
||||
# ports:
|
||||
# - "3306:3306"
|
||||
# environment:
|
||||
# - MYSQL_ROOT_PASSWORD=root
|
||||
# - MYSQL_DATABASE=test
|
||||
# volumes:
|
||||
# - "./conf.d:/etc/mysql/conf.d:ro"
|
||||
selenium:
|
||||
image: selenium/standalone-firefox
|
||||
shm_size: 2g
|
||||
|
|
Loading…
Reference in a new issue