created Dockhand

This commit is contained in:
2026-04-26 12:33:37 -07:00
parent 6a444a7015
commit d5861e0f77
3 changed files with 21 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
# Main interface port for accessing the application
DOCKHAND_PORT="3000"
# Time Zone where the application is operating
DOCKHAND_TZ="America/Los_Angeles"
+15
View File
@@ -0,0 +1,15 @@
services:
dockhand:
image: fnsys/dockhand:latest
container_name: dockhand
ports:
- "${DOCKHAND_PORT}:3000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- dockhand_data:/app/data
environment:
- TZ=${DOCKHAND_TZ}
restart: unless-stopped
volumes:
dockhand_data:
+1 -1
View File
@@ -2,4 +2,4 @@
SEERR_TZ="America/Los_Angeles"
# Main interface port for accessing the application
SEERR_PORT="8055"
SEERR_PORT="5055"