-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 704 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (36 loc) · 704 Bytes
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
version: '3'
services:
## APLICAÇÃO
dialogflow-myzap:
build:
context: .
dockerfile: Dockerfile
image: dialogflow-myzap
container_name: dialogflow-myzap
restart: unless-stopped
networks:
- backend
volumes:
- ./:/var/www
## WEBSERVER
dialogflow-webserver:
build:
context: .
dockerfile: Dockerfile_Nginx
image: nginx
container_name: dialogflow-webserver
restart: unless-stopped
ports:
- "80:80"
networks:
- backend
volumes:
- ./:/var/www
- ./config/nginx/:/etc/nginx/conf.d/
depends_on:
- dialogflow-myzap
networks:
frontend:
driver: bridge
backend:
driver: bridge