-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
56 lines (49 loc) · 970 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
51
52
53
54
55
version: "3.4"
services:
mongodb:
restart: always
image: mongodb:latest
ports:
- "27017:27017/tcp"
env_file:
- mongodb/.env
volumes:
- ./mongodb/storage:/data/db
networks:
internal:
mongo-express:
restart: always
image: mongo-express:latest
ports:
- "8081:8081/tcp"
depends_on:
- "mongodb"
env_file:
- mongo-express/.env
networks:
internal:
api:
restart: always
image: api:latest
env_file:
- api/.env
volumes:
- ./api/conf/app:/app
ports:
- "8000:8000/tcp"
networks:
internal:
kamailio:
restart: always
image: kamailio:latest
env_file:
- kamailio/.env
volumes:
- ./kamailio/conf/etc/kamailio/kamailio.cfg:/etc/kamailio/kamailio.cfg
ports:
- "5060:5060/udp"
networks:
internal:
networks:
internal:
external: false