-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
54 lines (49 loc) · 1.08 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: '3'
networks:
appnetwork:
services:
nginx:
image: nginx:stable-alpine
container_name: nginx-service
ports:
- "8088:80"
volumes:
- ./public_html:/var/www/html
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./nginx/log/error.log:/var/log/nginx/error.log
- ./nginx/log/access.log:/var/log/nginx/access.log
depends_on:
- php
- mysql
networks:
- appnetwork
mysql:
image: mysql:5.7.32
container_name: mysql-service
restart: on-failure
tty: true
ports:
- "4306:3306"
volumes:
- ./mysql:/var/lib/mysql
- ./mysql/my.cnf:/etc/mysql/my.cnf
environment:
MYSQL_DATABASE: webapp
MYSQL_USER: root
MYSQL_PASSWORD: password1
MYSQL_ROOT_PASSWORD: password1
SERVICE_TAGS: dev
SERVICE_NAME: mysql
networks:
- appnetwork
php:
build:
context: .
dockerfile: Dockerfile
container_name: php-service
volumes:
- ./public_html:/var/www/html
ports:
- "9000:9000"
networks:
- appnetwork