-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
64 lines (59 loc) · 1.09 KB
/
docker-compose.yaml
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
57
58
59
60
61
62
63
64
services:
ethux-ai-api:
build:
context: .
dockerfile: api.Dockerfile
ports:
- "8008:8000"
env_file:
- .env
depends_on:
- executor-1
- executor-2
- executor-3
networks:
- executor-network
# Executor containers
executor-1:
build:
context: .
dockerfile: executor.Dockerfile
environment:
- EXECUTOR_ID=1
env_file:
- executor/.env
volumes:
- executor-1-data:/app/data
networks:
- executor-network
executor-2:
build:
context: .
dockerfile: executor.Dockerfile
environment:
- EXECUTOR_ID=2
env_file:
- executor/.env
volumes:
- executor-2-data:/app/data
networks:
- executor-network
executor-3:
build:
context: .
dockerfile: executor.Dockerfile
environment:
- EXECUTOR_ID=3
env_file:
- executor/.env
volumes:
- executor-3-data:/app/data
networks:
- executor-network
networks:
executor-network:
volumes:
execution_log:
executor-1-data:
executor-2-data:
executor-3-data: