Files
reducelink/docker-compose.yml
T
2026-06-12 01:26:06 +02:00

22 lines
378 B
YAML

services:
reducelink:
build:
context: .
dockerfile: Dockerfile
container_name: reducelink
ports:
- "${APP_PORT}:3000"
env_file:
- .env
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s