-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (46 loc) · 956 Bytes
/
docker-compose.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
x-base-service: &base-service
stdin_open: true
tty: true
entrypoint: /bin/bash
x-metatron-service: &metatron-service
<<: *base-service
depends_on:
- kafka
build: .
services:
zookeeper:
image: ubuntu/zookeeper:latest
ports:
- "2181:2181"
kafka:
image: ubuntu/kafka:latest
depends_on:
- zookeeper
environment:
- ZOOKEEPER_HOST=zookeeper
- ZOOKEEPER_PORT=2181
ports:
- "9092:9092"
api:
<<: *metatron-service
image: metatron-api:localdev
ports:
- "3000:3000"
volumes:
- ./api:/dist/api
environment:
- API_SERVER_PORT=3000
piper:
<<: *metatron-service
image: metatron-piper:localdev
volumes:
- ./workers/worker_piper:/dist/worker
# llama:
# <<: *metatron-service
# image: metatron-llama:localdev
# ports:
# - "3001:3001"
# volumes:
# - ./api:/dist/api
# environment:
# - API_SERVER_PORT=3001