blogs/docker-compose.yml
Neeldhara Misra b3cd8a8914
Some checks are pending
Build / build (push) Waiting to run
Attach Dokploy compose service to proxy network
2026-06-13 20:03:47 +02:00

19 lines
362 B
YAML

services:
blogs:
build:
context: .
restart: unless-stopped
expose:
- "80"
networks:
- dokploy-network
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1/nginx-health"]
interval: 30s
timeout: 3s
retries: 3
start_period: 10s
networks:
dokploy-network:
external: true