-
Notifications
You must be signed in to change notification settings - Fork 65
/
docker-compose.yaml
49 lines (44 loc) · 1.01 KB
/
docker-compose.yaml
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
version: '3'
services:
wppconnect-server:
build:
context: ./wppconnect-server
dockerfile: Dockerfile
restart: always
image: wppconnect-server
container_name: wppconnect-server
hostname: wppconnect-server
entrypoint: docker-entrypoint.sh yarn dev
networks:
- wpp-network
tty: true
wppconnect-front:
build:
context: ./wppconnect-front
dockerfile: Dockerfile
image: wppconnect-front
container_name: wppconnect-front
hostname: wppconnect-front
entrypoint: docker-entrypoint.sh yarn start
networks:
- wpp-network
tty: true
depends_on:
- wppconnect-server
wppconnect-nginx:
build:
context: ./wppconnect-nginx
dockerfile: Dockerfile
container_name: wppconnect-nginx
entrypoint: nginx -g "daemon off;"
ports:
- "8080:8080"
- "8081:8081"
networks:
- wpp-network
depends_on:
- wppconnect-front
networks:
wpp-network:
name: wpp-network
driver: bridge