Add default values to docker stack.
parent
a192a01291
commit
136ec78138
|
@ -3,9 +3,9 @@ volumes:
|
||||||
metadatabase:
|
metadatabase:
|
||||||
library:
|
library:
|
||||||
driver_opts:
|
driver_opts:
|
||||||
type: ${LIBRARY_VOLUME_TYPE}
|
type: "${LIBRARY_VOLUME_TYPE:-local}"
|
||||||
o: ${LIBRARY_VOLUME_OPTIONS}
|
o: "${LIBRARY_VOLUME_OPTIONS:-defaults}"
|
||||||
device: ${LIBRARY_VOLUME_DEVICE}
|
device: "${LIBRARY_VOLUME_DEVICE:-/var/tmp/whatever}"
|
||||||
services:
|
services:
|
||||||
liquidsoap:
|
liquidsoap:
|
||||||
image: icedream/liquidsoap
|
image: icedream/liquidsoap
|
||||||
|
@ -46,11 +46,11 @@ services:
|
||||||
# HACK - haven't quite figured out the ports SRT/NDI use
|
# HACK - haven't quite figured out the ports SRT/NDI use
|
||||||
network_mode: host
|
network_mode: host
|
||||||
command:
|
command:
|
||||||
- /usr/local/bin/tunaposter
|
- '/usr/local/bin/tunaposter'
|
||||||
# tuna source URL
|
# tuna source URL
|
||||||
- ${TUNA_SOURCE_URL}
|
- '${TUNA_SOURCE_URL:-http://localhost}'
|
||||||
# liquidsoap metadata API URL
|
# liquidsoap metadata API URL
|
||||||
- http://127.0.0.1:21338
|
- 'http://127.0.0.1:21338'
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
|
Loading…
Reference in New Issue