feat: add deployment workflows for web, Android, Docker, macOS, and Linux
Build Images and Deploy / Update-PROD-Stack (push) Successful in 34s
Build Images and Deploy / Update-PROD-Stack (push) Successful in 34s
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user