first commit

This commit is contained in:
Blake Ridgway
2026-07-03 21:16:24 -05:00
commit 3d4e2d4b1a
14 changed files with 1447 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
# 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