-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (31 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
32 lines (31 loc) · 1.17 KB
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
# QP Conduit — On-Premises Infrastructure Dashboard
# Usage: docker compose up -d
# Dashboard: http://localhost:9999
name: qp-conduit
services:
app:
build: .
container_name: qp-conduit
ports:
- "127.0.0.1:9999:9999"
volumes:
- ./server.py:/app/server.py
- ./conduit-setup.sh:/app/conduit-setup.sh
- ./conduit-register.sh:/app/conduit-register.sh
- ./conduit-deregister.sh:/app/conduit-deregister.sh
- ./conduit-status.sh:/app/conduit-status.sh
- ./conduit-monitor.sh:/app/conduit-monitor.sh
- ./conduit-certs.sh:/app/conduit-certs.sh
- ./conduit-dns.sh:/app/conduit-dns.sh
- ./conduit-preflight.sh:/app/conduit-preflight.sh
- ./lib:/app/lib
- ./templates:/app/templates
- ${CONDUIT_CONFIG_DIR:-~/.config/qp-conduit}:/home/conduit/.config/qp-conduit
environment:
- CONDUIT_APP_NAME=${CONDUIT_APP_NAME:-qp-conduit}
- CONDUIT_CONFIG_DIR=/home/conduit/.config/qp-conduit
- CONDUIT_CADDY_ADMIN=${CONDUIT_CADDY_ADMIN:-host.docker.internal:2019}
- CONDUIT_API_KEY=${CONDUIT_API_KEY:-}
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped