-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.osint.yml
52 lines (46 loc) · 1.18 KB
/
docker-compose.osint.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
version: '3.8'
services:
osint:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/osint/main.js' ]
deploy:
replicas: 3
environment:
- NODE_ENV=${NODE_ENV}
- KEY=${KEY}
keys:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/keys/main.js' ]
environment:
- NODE_ENV=${NODE_ENV}
- KEY=${KEY}
realms:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/realms/main.js' ]
environment:
- NODE_ENV=${NODE_ENV}
- KEY=${KEY}
characters:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/characters/main.js' ]
environment:
- NODE_ENV=${NODE_ENV}
- KEY=${KEY}
guilds:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/guilds/main.js' ]
environment:
- NODE_ENV=${NODE_ENV}
- KEY=${KEY}
wowprogress:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/wowprogress/main.js' ]
environment:
- NODE_ENV=${NODE_ENV}
- KEY=${KEY}