vultr-dns-manager/compose.yml
2025-03-16 07:53:44 -06:00

25 lines
607 B
YAML

services:
vultr-dns-manager:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
restart: unless-stopped
environment:
- NODE_ENV=production
# You can add other environment variables here if needed
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes:
# Optional: Mount a volume for persistent data if needed
- vultr-dns-manager-data:/app/.next/cache
volumes:
vultr-dns-manager-data: