-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
39 lines (36 loc) · 1.03 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
version: '3'
services:
bpi:
# change this to the image from your specific use case, built with the dockerfile
image: registry-dev.ondewo.com:5000/bpi-example-image:develop
restart: "no"
env_file:
- "ondewo_bpi/example/example.env"
volumes:
- "./logging.yaml:/home/ondewo/logging.yaml"
- "./config.json:/home/ondewo/config.json"
ports:
- 50051:50051
# network_mode: host
bpi_sip:
image: registry-dev.ondewo.com:5000/bpi-sip-example-image:develop
restart: "no"
env_file:
- "ondewo_bpi_sip/example/example.env"
volumes:
- "./logging.yaml:/home/ondewo/logging.yaml"
- "./config.json:/home/ondewo/config.json"
ports:
- 50051:50051
network_mode: host
bpi_qa:
image: registry-dev.ondewo.com:5000/bpi-qa-example-image:develop
restart: "no"
env_file:
- "ondewo_bpi_qa/example/example.env"
volumes:
- "./logging.yaml:/home/ondewo/logging.yaml"
- "./config.json:/home/ondewo/config.json"
ports:
- 50051:50051
network_mode: host