38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
|
version: "3.9"
|
||
|
services:
|
||
|
|
||
|
orchestra:
|
||
|
init: true
|
||
|
image: dkr-dsg.ac.upc.edu/trustchain-oc1-orchestral/orchestra:add_musician__95b0ed93
|
||
|
environment:
|
||
|
- SECRET_KEY=${ORCHESTRA_SECRET_KEY:-123456}
|
||
|
ports:
|
||
|
- "9080:9080"
|
||
|
# TODO configure volumes
|
||
|
#volumes:
|
||
|
# - .:/home
|
||
|
|
||
|
musician:
|
||
|
init: true
|
||
|
image: dkr-dsg.ac.upc.edu/trustchain-oc1-orchestral/musician:add_musician__95b0ed93
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
environment:
|
||
|
- SECRET_KEY=${MUSICIAN_SECRET_KEY:-123456}
|
||
|
- API_BASE_URL=${MUSICIAN_API_BASE_URL:-http://nginx-orchestra-api:3000}
|
||
|
- ALLOWED_HOSTS=${ALLOWED_HOSTS:-*}
|
||
|
# TODO configure volumes
|
||
|
#volumes:
|
||
|
# - .:/home
|
||
|
|
||
|
# WARNING: this containers is hardcoded and is only useful in localhost deployments
|
||
|
# and as a reference for reachable deployments
|
||
|
nginx-orchestra-api:
|
||
|
image: nginx
|
||
|
ports:
|
||
|
- 3000:3000
|
||
|
volumes:
|
||
|
# src https://hub.docker.com/_/nginx
|
||
|
# src https://github.com/docker-library/docs/tree/master/nginx#complex-configuration
|
||
|
- ./docker/nginx-orchestra-api.nginx.conf:/etc/nginx/nginx.conf:ro
|