Files
SixFlagsSuperCalendar/docker-compose.yml
josh a2b59b2f8d
Some checks failed
Build and Deploy / build-and-push (push) Failing after 1m7s
fix: derive registry host from gitea.server_url instead of unset variable
REGISTRY_URL var was empty so docker login fell through to Docker Hub.
Now strips protocol from gitea.server_url to get the registry hostname —
no manual variable needed. docker-compose defaults to the known host.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-04 01:10:20 -04:00

17 lines
330 B
YAML

services:
web:
image: ${REGISTRY_URL:-gitea.thewrightserver.net}/josh/sixflagssupercalendar:latest
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- park_data:/app/data
environment:
- NODE_ENV=production
restart: unless-stopped
volumes:
park_data: