23 lines
622 B
YAML
23 lines
622 B
YAML
# Baked into the image at /etc/app-template/config.yml: the defaults for a
|
|
# containerised run. Every value is overridden by the environment
|
|
# (APP__POSTGRES__PASSWORD=..., APP__VM__URI=...), which is how the compose file
|
|
# passes the secrets — never edit this file to put one in.
|
|
server:
|
|
address: 0.0.0.0
|
|
port: 3000
|
|
|
|
postgres:
|
|
host: db
|
|
port: 5432
|
|
user: postgres
|
|
password: postgres
|
|
name: vmselector
|
|
|
|
vm:
|
|
driver: libvirt
|
|
# The host's libvirt socket, bind-mounted by the compose file
|
|
uri: qemu:///system
|
|
timeout_seconds: 20
|
|
|
|
# Where the Dockerfile puts the built frontend
|
|
frontend_dir: /app/frontend
|