0be8de8ab0
vm-esh-nas (10.0.50.154) is a NAS-adjacent Docker VM on the esh-pve-nas
hypervisor. Runs filezilla (port 5800), dockge, beszel-agent, dozzle-agent
with /mnt/{share,music,books,media} NFS-mounted from 10.0.50.50.
Use this host when a stack needs direct NFS mounts to the ESH NAS shares.
Canonicalize dockge as stacks/dockge/ — single compose used on all five
Docker hosts with per-host DOCKGE_HOST_LABEL/DOCKGE_HOST_IP in .env so
each card on the homepage points at its own instance. Labeled
homepage.group=Service Networking.
Beszel + Dozzle agent dirs also renamed to beszel-agent-<site> /
dozzle-agent-<site> pattern across the fleet for consistency.
24 lines
770 B
Bash
24 lines
770 B
Bash
# Dockge per-host tunables.
|
|
#
|
|
# Copy to .env on each host. Most defaults are fine; the HOST_LABEL and
|
|
# HOST_IP are what the homepage card shows, so they must be set per-host.
|
|
|
|
# Image pin (blank = latest)
|
|
DOCKGE_VERSION=latest
|
|
|
|
# Port on the host. Default matches the upstream docs.
|
|
DOCKGE_PORT=5001
|
|
|
|
# Human-readable host name for the homepage card, e.g.
|
|
# ana-docker, nh3-docker, esh-docker-vm, vm-esh-nas, ana-ml2
|
|
DOCKGE_HOST_LABEL=
|
|
|
|
# IP (or hostname) the browser uses to reach this Dockge. Used in
|
|
# homepage.href — must be reachable from wherever you view homepage.
|
|
# ana-docker → 10.250.50.70
|
|
# ana-ml2 → 10.250.50.54
|
|
# nh3-docker → 10.100.50.40
|
|
# esh-docker-vm → 10.0.50.45
|
|
# vm-esh-nas → 10.0.50.154
|
|
DOCKGE_HOST_IP=
|