-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
50 lines (44 loc) · 1018 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
41
42
43
44
45
46
47
48
49
50
version: "3"
services:
nwaf-dyn:
image: nemesida/nwaf-dyn
container_name: nwaf-dyn
ports:
- 80:80
- 5672:5672
- 5673:5673
volumes:
- /opt/nwaf/waf-config:/nginx.configs
nwaf-mlc:
image: nemesida/nwaf-mlc
container_name: nwaf-mlc
volumes:
- /opt/nwaf/mlc-config:/nwaf_mlc.configs
PostgreSQL:
image: postgres
container_name: postgresql
environment:
POSTGRES_PASSWORD: ""
ports:
- 5432:5432
volumes:
- /opt/nwaf/nwaf-db:/var/lib/postgresql/data
nwaf-api:
image: nemesida/nwaf-api
container_name: nwaf-api
ports:
- 8080:8080
volumes:
- /opt/nwaf/nwaf-api:/nwaf-api
nwaf-cabinet:
image: nemesida/nwaf-cabinet
container_name: nwaf-cabinet
ports:
- 8090:80
volumes:
- /opt/nwaf/nwaf-cabinet:/nwaf-cabinet
nwaf-scanner:
image: nemesida/nwaf-scanner
container_name: nwaf-scanner
volumes:
- /opt/nwaf/nwaf-scanner:/nwaf-scanner