feat: add deployment workflows for web, Android, Docker, macOS, and Linux
Build Images and Deploy / Update-PROD-Stack (push) Successful in 34s

This commit is contained in:
2026-03-30 22:00:36 -04:00
parent f5e69fa9cd
commit ab17324f85
13 changed files with 971 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
version: '3.8'
services:
dibbly-web:
image: reg.dev.nervesocket.com/dibbly:latest
container_name: dibbly-wemo-manager
restart: unless-stopped
ports:
- "3456:3456"
volumes:
- dibbly-data:/data
environment:
- DATA_DIR=/data
- PORT=3456
networks:
- dibbly-network
# Use host networking on Linux for Wemo SSDP discovery
# Comment out the network_mode line below if not on Linux
# network_mode: host
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3456/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
dibbly-data:
driver: local
networks:
dibbly-network:
driver: bridge