eshop/docker-compose.yml
Prémel-Cabic Arnaud 6d5f3e59c3 add docker-compose
2019-03-04 19:50:21 +01:00

18 lines
394 B
YAML

version: "3"
services:
web:
image: tomcat:8-alpine
volumes:
- ./out/artifacts/eshop_war/eshop_war.war:/usr/local/tomcat/webapps/eshop.war
ports:
- 8080:8080
db:
image: mysql:5.6
environment:
- MYSQL_ROOT_PASSWORD=GaoDi0906
- MYSQL_DATABASE=eshop
ports:
- 3306:3306
volumes:
- ./eshop.sql:/docker-entrypoint-initdb.d/eshop.sql