-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (42 loc) · 851 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (42 loc) · 851 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
version: "3.3"
services:
mongodb:
image: mongo
volumes:
- ~/mongodb:/data/db
ports:
- "27017:27017"
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: rabbitmq
ports:
- "5672:5672"
- "15672:15672"
codex-bot:
build:
dockerfile: Dockerfile
context: .
command: python main.py
ports:
- "1337:1337"
notify:
build:
dockerfile: ../notify/Dockerfile
context: ../notify
command: python ./notify/main.py
ports:
- "1339:1339"
github:
build:
dockerfile: ../github/Dockerfile
context: ../github
command: python ./github/main.py
ports:
- "1333:1333"
metrika:
build:
dockerfile: ../metrika/Dockerfile
context: ../metrika
command: python ./metrika/main.py
ports:
- "1334:1334"