Files
homelabstack/stacks/remote/docker-compose.yml
T
ginnoir 57cd6ed270 refactor: split monolith into per-domain stacks (Phase A: build)
Add stacks/<domain>/ compose + env for the 11 target stacks (proxy, media,
foundry, owncloud, resume, famapp, authentik, notify, monitoring, remote, dev).
Each app stack joins a shared external `edge` network for Caddy and keeps its
DB/cache co-located (no shared backing services). All named volumes convert to
tiered bind mounts: DBs/configs -> /config (SSD), blobs/repos/registry ->
/storage1/labdata (ZFS). Gitea repos+LFS split to ZFS.

Move Vault into the management plane (portainer-compose.yml) and add the shared
`edge` network there. apply-compose.ps1 -Portainer now also pushes vault.hcl.

Additive only: root docker-compose.yml/.env/Caddyfile untouched, so the live
monolith is unchanged. Live cutover (Phase B) is next.
2026-06-04 16:11:31 -05:00

29 lines
728 B
YAML

# remote stack — RustDesk relay (hbbr) + signal/ID server (hbbs).
# Not proxied by Caddy (raw TCP/UDP ports); bind-mounted to /config/rustdesk.
# They use the project default network for the inter-container dependency.
services:
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
command: hbbr
restart: unless-stopped
ports:
- "21117:21117"
volumes:
- /config/rustdesk/hbbr/data:/root
hbbs:
container_name: hbbs
image: rustdesk/rustdesk-server:latest
command: hbbs
restart: unless-stopped
ports:
- "21115:21115"
- "21116:21116"
- "21116:21116/udp"
volumes:
- /config/rustdesk/hbbs/data:/root
depends_on:
- hbbr