-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (53 loc) · 1.3 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
55
56
57
58
version: "3.7"
services:
## PHP-FPM Container ############
php-fpm:
build:
context: ./
dockerfile: Dockerfile
image: php-fpm
container_name: api-projeto-restaurante-php-fpm
restart: unless-stopped
working_dir: /var/www/html
volumes:
- ./:/var/www/html
networks:
- api-projeto-restaurante-network
depends_on:
- mysql
## NGINX Container #############
nginx:
image: nginx:1.19-alpine
container_name: api-projeto-restaurante-nginx
restart: unless-stopped
ports:
- "8081:80"
volumes:
- ./:/var/www/html
- ./default.conf:/etc/nginx/conf.d/default.conf
networks:
- api-projeto-restaurante-network
depends_on:
- php-fpm
## MySQL Container #############
mysql:
image: mysql:8.0
container_name: api-projeto-restaurante-mysql
volumes:
- api-projeto-restaurante-db:/var/lib/mysql
ports:
- "3306:3306"
environment:
- "MYSQL_DATABASE=restaurante"
- "MYSQL_USER=restaurante"
- "MYSQL_PASSWORD=restaurante"
- "MYSQL_ROOT_PASSWORD=restaurante"
networks:
- api-projeto-restaurante-network
networks:
api-projeto-restaurante-network:
driver: bridge
name: network_api
volumes:
api-projeto-restaurante-db:
driver: local