docker-compose.yaml
· 424 B · YAML
Eredeti
services:
dockhand:
image: fnsys/dockhand:latest
container_name: dockhand
restart: unless-stopped
ports:
- 3998:3000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- dockhand_data:/app/data
volumes:
dockhand_data:
# pour les agents :
# curl -fsSL https://raw.githubusercontent.com/Finsys/hawser/main/scripts/install.sh | bash
# Token secret creation
# openssl rand -hex 32
| 1 | services: |
| 2 | dockhand: |
| 3 | image: fnsys/dockhand:latest |
| 4 | container_name: dockhand |
| 5 | restart: unless-stopped |
| 6 | ports: |
| 7 | - 3998:3000 |
| 8 | volumes: |
| 9 | - /var/run/docker.sock:/var/run/docker.sock |
| 10 | - dockhand_data:/app/data |
| 11 | |
| 12 | volumes: |
| 13 | dockhand_data: |
| 14 | |
| 15 | |
| 16 | # pour les agents : |
| 17 | # curl -fsSL https://raw.githubusercontent.com/Finsys/hawser/main/scripts/install.sh | bash |
| 18 | |
| 19 | # Token secret creation |
| 20 | # openssl rand -hex 32 |