On the remote host, I tried configuring my hawser compose file to bind mount my remote docker directory to /data/stacks as mentioned in this github's readme, and to its matching path as mentioned in the docs. Neither bind mount results in the remote compose files being visible from the web interface. This is the compose file I'm using for hawser:
services:
hawser:
image: ghcr.io/finsys/hawser:latest
container_name: hawser
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# - /home/docker:/data/stacks
- /home/docker:/home/docker
environment:
- TOKEN=redacted
- AGENT_NAME=remote
ports:
- "2376:2376"
On the remote host, I tried configuring my hawser compose file to bind mount my remote docker directory to /data/stacks as mentioned in this github's readme, and to its matching path as mentioned in the docs. Neither bind mount results in the remote compose files being visible from the web interface. This is the compose file I'm using for hawser: