From afdc3588d42822d10feef72dc10a3ae7debb3303 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 6 May 2026 16:21:42 -0400 Subject: [PATCH] feat: add docker-compose configuration for byparr service --- nodes/heimdall/byparr/compose.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 nodes/heimdall/byparr/compose.yaml diff --git a/nodes/heimdall/byparr/compose.yaml b/nodes/heimdall/byparr/compose.yaml new file mode 100644 index 0000000..dcc608c --- /dev/null +++ b/nodes/heimdall/byparr/compose.yaml @@ -0,0 +1,21 @@ +services: + byparr: + image: ghcr.io/thephaseless/byparr:latest + container_name: byparr + restart: unless-stopped + init: true + ports: + - "8191:8191" + environment: + - HOST=0.0.0.0 + - PORT=8191 + # Optional proxy settings (uncomment and configure if needed) + # - PROXY_SERVER=protocol://host:port + # - PROXY_USERNAME=username + # - PROXY_PASSWORD=password + networks: + - proxy-net + +networks: + proxy-net: + external: true \ No newline at end of file