- added example docker-compose for minisrv + webone - update: wtv-home:/home: reduce size of title to fit longer version numbers - update: wtv-chat:/home: fix colors - update: login system: do not send tellyscript nor login headers to reconnecting (eg client:redial) client - fix: fixed tellyscript path for wtv-1800:/noflash (bf0app braindead) - update flashrom subsystem: - moved duplicate code into WTVFlashrom class - smarter part information detection - http(s) proxy updates: - allow ~ character - fix HTTPS when using HTTP proxy - include example webone.conf for external HTTP Proxy - update: app.js: enable graceful shutdown with SIGTERM - update: add service ip to wtv-tricks:/info
23 lines
615 B
YAML
23 lines
615 B
YAML
version: '3'
|
|
services:
|
|
webone:
|
|
build: ./webone
|
|
restart: unless-stopped
|
|
stop_signal: SIGKILL
|
|
volumes:
|
|
- /home/zefie/docker/wtvminisrv/webone.conf:/etc/webone.conf:ro
|
|
- /home/zefie/docker/wtvminisrv/webone.conf.d/:/etc/webone.conf.d/:ro
|
|
|
|
minisrv:
|
|
build: ./minisrv
|
|
restart: unless-stopped
|
|
links:
|
|
- webone
|
|
ports:
|
|
- "1600-1699:1600-1699"
|
|
volumes:
|
|
- /home/zefie/docker/wtvminisrv/user_config.json:/opt/minisrv/zefie_wtvp_minisrv/user_config.json:ro
|
|
- /home/zefie/docker/wtvminisrv/UserServiceVault:/opt/minisrv/zefie_wtvp_minisrv/UserServiceVault
|
|
|
|
|