commit 7d212d2ade05ca7fdd38f491ad8f049a34df989e Author: stephane.david Date: Mon Mar 9 10:05:07 2026 +0100 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3561a35 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + dockhand: + image: fnsys/dockhand:latest + container_name: dockhand + restart: unless-stopped + ports: + - 3080:3000 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - dockhand_data:/app/data + +volumes: + dockhand_data: \ No newline at end of file