Files
landing/docker-compose.yml
Blake Ridgway 3d4e2d4b1a first commit
2026-07-03 21:16:24 -05:00

25 lines
573 B
YAML

# Arcline Project — Landing Page
#
# Deploy: docker compose up -d
# Stop: docker compose down
# Logs: docker compose logs -f
# Build: docker compose build
services:
landing:
build:
context: .
dockerfile: Dockerfile
container_name: arcline-landing
restart: unless-stopped
ports:
- "8080:8080"
environment:
- PORT=8080
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8080"]
interval: 30s
timeout: 3s
retries: 3
start_period: 10s