-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose_dev.yml
63 lines (57 loc) · 1.35 KB
/
docker-compose_dev.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
56
57
58
59
60
61
62
63
version: "3.3"
services:
oteapi:
build:
context: "."
target: "${DOCKER_OTEAPI_TARGET:-development}"
ports:
- "${PORT:-8080}:8080"
- "5678:5678" # Debug port
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:-True}"
OTEAPI_EXPOSE_SECRETS: "${OTEAPI_EXPOSE_SECRETS:-True}"
PATH_TO_OTEAPI_CORE:
OTEAPI_PLUGIN_PACKAGES:
OTEAPI_AUTHENTICATION_DEPENDENCIES:
CI:
depends_on:
- redis
networks:
- otenet
volumes:
- "${PWD}:/app"
- "${PATH_TO_OTEAPI_CORE:-/dev/null}:/oteapi_core"
redis:
image: redis:latest
volumes:
- redis-persist:/data
networks:
- otenet
# sftp:
# image: atmoz/sftp
# volumes:
# - sftp-storage:${HOME:-/home/foo}/download
# command: ${USER:-foo}:${PASSWORD:-pass}:1001
# 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:
# sftp-storage:
# agraph-data:
networks:
otenet: