Files
portfolio/docker-compose.yml
T
2026-06-10 23:44:38 +02:00

22 lines
372 B
YAML

services:
visio:
build:
context: .
dockerfile: Dockerfile
container_name: portfolio
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