forked from pwndoc/pwndoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (52 loc) · 1.27 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
52
53
54
55
56
version: '3'
services:
mongodb:
image: mongo:4.2.15
container_name: mongo-pwndoc
command: --wiredTigerCacheSizeGB 1 # 50% of (max RAM - 1GB) - minimum 0.25 (Modify it depending on defined RAM limits)
deploy:
resources:
limits:
memory: 3G # Maximum memory to allocate (Modify it depending on host ressources - leave at least 1GB free for host)
reservations:
memory: 1G # Minimum memory required
volumes:
- ./backend/mongo-data:/data/db
restart: always
ports:
- 127.0.0.1:27017:27017
environment:
- MONGO_DB:pwndoc
networks:
- backend
pwndoc-backend:
build: ./backend
image: yeln4ts/pwndoc:backend
container_name: pwndoc-backend
volumes:
- ./backend/report-templates:/app/report-templates
- ./backend/src/config:/app/src/config
- ./backend/backup:/app/backup
depends_on:
- mongodb
restart: always
ports:
- 4242:4242
links:
- mongodb
networks:
- backend
pwndoc-frontend:
build: ./frontend
image: yeln4ts/pwndoc:frontend
container_name: pwndoc-frontend
restart: always
ports:
- 8443:8443
networks:
- backend
volumes:
mongo-data:
networks:
backend:
driver: bridge