-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.dev.yml
More file actions
41 lines (38 loc) · 989 Bytes
/
compose.dev.yml
File metadata and controls
41 lines (38 loc) · 989 Bytes
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
services:
oteapi:
build:
context: "."
target: "development"
additional_contexts:
# These can be changed to point to local directories or similar
oteapi-core: "${OTEAPI_CORE_PATH:-https://github.com/EMMC-ASBL/oteapi-core.git}"
ports:
- "${OTEAPI_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}"
OTEAPI_PLUGIN_PACKAGES:
OTEAPI_AUTHENTICATION_DEPENDENCIES:
CI:
volumes:
- "${PWD}:/app"
depends_on:
- redis
networks:
- otenet
stop_grace_period: 1s
redis:
image: redis:latest
volumes:
- redis-persist:/data
networks:
- otenet
volumes:
redis-persist:
networks:
otenet: