-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (48 loc) · 1.06 KB
/
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
services:
gigapi:
image: ghcr.io/gigapi/gigapi:latest
container_name: gigapi
hostname: gigapi
restart: unless-stopped
volumes:
- ./data:/data
ports:
- "7971:7971"
environment:
- GIGAPI_ENABLED=true
- GIGAPI_MERGE_TIMEOUT_S=10
- GIGAPI_ROOT=/data
- PORT=7971
gigapi-querier:
image: ghcr.io/gigapi/gigapi-querier:latest
container_name: gigapi-querier
hostname: gigapi-querier
volumes:
- ./data:/data
ports:
- "7972:7972"
environment:
- DATA_DIR=/data
- PORT=7972
hep-gigapi:
image: ghcr.io/sipcapture/hep-gigapi:latest
container_name: hep-gigapi
hostname: hep-gigapi
ports:
- "9060:9060/udp"
- "9060:9060/tcp"
environment:
- PORT=9060
- INFLUX_DBURL=http://gigapi:7971
hepgen:
image: qxip/docker-hepgen
container_name: hepgen
environment:
- "HEP_SERVER=hep-gigapi"
- "HEP_PORT=9060"
- "HEP_PROTO=udp4"
- "LOOP=400"
- "SLEEP=1800"
restart: unless-stopped
depends_on:
- hep-gigapi