keksAccount/docker-compose.yml

26 lines
448 B
YAML
Raw Permalink Normal View History

2019-04-24 18:46:41 +00:00
version: '3'
services:
webapp:
2019-07-10 15:04:35 +00:00
build:
context: ./
dockerfile: Dockerfile-web
2019-04-24 18:46:41 +00:00
volumes:
- ./:/var/www
ports:
- 8000:80
2019-07-10 15:04:35 +00:00
app:
build:
context: ./
dockerfile: Dockerfile-app
volumes:
- ./:/var/www
2019-04-24 18:46:41 +00:00
mysql:
image: mysql:5.7
ports:
2019-07-10 15:04:35 +00:00
- 3306:3306
2019-04-24 18:46:41 +00:00
environment:
MYSQL_ROOT_PASSWORD: example
MYSQL_DATABASE: oauth
MYSQL_USER: oauth
2019-06-06 13:44:45 +00:00
MYSQL_PASSWORD: oauth