-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
40 lines (37 loc) · 1012 Bytes
/
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
version: '3.7'
services:
drapp-local:
container_name: drapp-local
image: dockerhub.paziresh24.com/drapp-local
build:
context: .
dockerfile: Dockerfile.localCenter
environment:
- NODE_ENV=production
- PUBLIC_URL=/doctorapp
ports:
- '4030:80'
restart: always
drapp-proxy:
container_name: drapp-proxy
image: dockerhub.paziresh24.com/drapp-local
build:
context: .
dockerfile: Dockerfile.localCenter
environment:
- P24_DISABLE_THIRD_PARTY=true
- P24_IS_PROXY_CENTER=true
ports:
- '4040:80'
restart: always
drapp:
container_name: drapp
image: dockerhub.paziresh24.com/drapp
build:
context: .
dockerfile: Dockerfile.drApp
environment:
- NODE_ENV=production
ports:
- '4030:80'
restart: always