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:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
links:
|
links:
|
||||||
- mysql:mysql
|
# - mysql:mysql
|
||||||
- selenium
|
- selenium
|
||||||
command: java -jar ./target/*.jar
|
command: java -jar ./target/*.jar
|
||||||
mysql:
|
# mysql:
|
||||||
image: mysql
|
# image: mysql
|
||||||
ports:
|
# ports:
|
||||||
- "3306:3306"
|
# - "3306:3306"
|
||||||
environment:
|
# environment:
|
||||||
- MYSQL_ROOT_PASSWORD=root
|
# - MYSQL_ROOT_PASSWORD=root
|
||||||
- MYSQL_DATABASE=test
|
# - MYSQL_DATABASE=test
|
||||||
volumes:
|
# volumes:
|
||||||
- "./conf.d:/etc/mysql/conf.d:ro"
|
# - "./conf.d:/etc/mysql/conf.d:ro"
|
||||||
selenium:
|
selenium:
|
||||||
image: selenium/standalone-firefox
|
image: selenium/standalone-firefox
|
||||||
shm_size: 2g
|
shm_size: 2g
|
||||||
|
|
Loading…
Reference in a new issue