Add hawser

This commit is contained in:
JuliusFreudenberger 2026-05-14 22:30:26 +02:00
parent 64674a411a
commit d6598776df
2 changed files with 19 additions and 0 deletions

11
hawser/README.me Normal file
View file

@ -0,0 +1,11 @@
# Hawser
The agent for Dockhand
## env file
```env
STACKS_DIR=/opt/hawser-stacks
DOCKHAND_SERVER_URL=wss://your-dockhand.example.com/api/hawser/connect
TOKEN=your-agent-token
AGENT_NAME=my-server
```

View file

@ -0,0 +1,8 @@
services:
hawser:
image: ghcr.io/finsys/hawser:v0.2.42@sha256:79f926e8d8fe31c0dfe90858f90b69bfd4cfbb113472605620b91a4b444dd557
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${HAWSER_STACKS:-/opt/hawser-stacks}:${HAWSER_STACKS:-/opt/hawser-stacks}
env_file: .env