-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.osint.yml
More file actions
42 lines (38 loc) · 1.09 KB
/
docker-compose.osint.yml
File metadata and controls
42 lines (38 loc) · 1.09 KB
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
version: '3.8'
services:
osint:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/osint/main.js' ]
deploy:
replicas: ${OSINT_REPLICAS:-5}
environment:
- CHARACTERS_WORKER_CONCURRENCY=${CHARACTERS_WORKER_CONCURRENCY:-1}
- GUILDS_WORKER_CONCURRENCY=${GUILDS_WORKER_CONCURRENCY:-1}
- PROFILE_WORKER_CONCURRENCY=${PROFILE_WORKER_CONCURRENCY:-1}
env_file:
- stack.env
characters:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/characters/main.js' ]
env_file:
- stack.env
guilds:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/guilds/main.js' ]
env_file:
- stack.env
wow-progress:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/wow-progress/main.js' ]
env_file:
- stack.env
warcraft-logs:
image: ghcr.io/alexzedim/osint:latest
restart: always
command: [ 'node', 'dist/apps/warcraft-logs/main.js' ]
env_file:
- stack.env