-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
46 lines (41 loc) · 1001 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
version: "3"
services:
oteapi:
image: ghcr.io/emmc-asbl/oteapi:${DOCKER_OTEAPI_VERSION:-latest}
ports:
- "${PORT:-8080}:8080"
environment:
OTEAPI_REDIS_TYPE: redis
OTEAPI_REDIS_HOST: redis
OTEAPI_REDIS_PORT: 6379
OTEAPI_prefix: "${OTEAPI_prefix:-/api/v1}"
OTEAPI_INCLUDE_REDISADMIN: "${OTEAPI_INCLUDE_REDISADMIN:-False}"
OTEAPI_EXPOSE_SECRETS: "${OTEAPI_EXPOSE_SECRETS:-True}"
OTEAPI_PLUGIN_PACKAGES:
OTEAPI_AUTHENTICAION_DEPENDENCIES:
depends_on:
- redis
networks:
- otenet
redis:
image: redis:latest
volumes:
- redis-persist:/data
networks:
- otenet
agraph:
image: franzinc/agraph:v7.2.0
volumes:
- agraph-data:/agraph/data
- ./agraph.cfg:/agraph/etc/agraph.cfg
ports:
- "10000-10035:10000-10035"
restart: on-failure
shm_size: 4g
networks:
- otenet
volumes:
redis-persist:
agraph-data:
networks:
otenet: