-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (48 loc) · 961 Bytes
/
docker-compose.yml
File metadata and controls
54 lines (48 loc) · 961 Bytes
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
version: '3.9'
services:
bengine-manager:
build: ./services/manager
ports:
- "3000:3000"
depends_on:
- bengine-redis
networks:
- bengine
bengine-redis:
image: "redis:latest"
ports:
- "6379:6379"
networks:
- bengine
bengine-app:
build:
context: ./main
target: bengine-app
ports:
- "1337:1337"
restart: unless-stopped
depends_on:
- bengine-mongodb
networks:
- bengine
environment:
- BENGINE_DB_URI=mongodb://bengine-mongodb:27017/bengine
bengine-job-runner:
build:
context: ./main
target: bengine-job-runner
restart: unless-stopped
depends_on:
- bengine-mongodb
networks:
- bengine
environment:
- BENGINE_DB_URI=mongodb://bengine-mongodb:27017/bengine
bengine-mongodb:
image: mongo:latest
ports:
- "27017:27017"
networks:
- bengine
networks:
bengine: