-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (48 loc) · 1.02 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
version: "3.1"
services:
# iris
iris:
init: true
container_name: iris
build:
context: .
dockerfile: iris/Dockerfile
ports:
- 52774:52773
- 51774:1972
volumes:
- ./iris/shared:/iris-shared
environment:
- ISC_DATA_DIRECTORY=/iris-shared/durable
command: --check-caps false --ISCAgent false
# web gateway container
webgateway:
init: true
container_name: webgateway
build:
context: .
dockerfile: webgateway/Dockerfile
hostname: webgateway
ports:
- "8080:80"
- "8443:443"
environment:
- ISC_DATA_DIRECTORY=/webgateway-shared/durable
- ISC_CSP_CONF_FILE=/webgateway-shared/CSP.conf
- ISC_CSP_INI_FILE=/webgateway-shared/CSP.ini
volumes:
- ./webgateway/shared:/webgateway-shared
depends_on:
- iris
#angular
angular:
init: true
container_name: smart-ui
build:
context: .
dockerfile: smart-ui/Dockerfile
ports:
- 80:80
- 443:443
depends_on:
- iris