Files
templates/blueprints/networking-toolbox/docker-compose.yml
Jainil Prajapati 469cfbb124 feat: add networking toolbox blueprint (#474)
Add docker-compose.yml for the networking-toolbox service with health checks and environment variables. Include networking-toolbox.png logo and template.toml for configuration. Update meta.json with blueprint metadata to enable self-hosting of networking utilities.
2025-10-25 01:54:34 -06:00

19 lines
383 B
YAML

version: "3.8"
services:
app:
image: lissy93/networking-toolbox:latest
expose:
- "3000"
environment:
NODE_ENV: ${NODE_ENV}
PORT: ${PORT}
HOST: ${HOST}
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s