chore: hardcode registry URL and clean up readme
Some checks failed
Build and Deploy / build-and-push (push) Failing after 38s

docker-compose no longer needs REGISTRY_URL env var.
README now uses the actual registry host throughout.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 01:13:16 -04:00
parent a2b59b2f8d
commit 12af38c5f6
2 changed files with 6 additions and 6 deletions

View File

@@ -74,10 +74,10 @@ The app uses Next.js standalone output. The SQLite database is stored in a Docke
docker compose up --build
```
Or pull from the registry:
Or pull from the registry and run:
```bash
REGISTRY_URL=your.registry.host docker compose up
docker compose up
```
#### Seed the database inside the container
@@ -96,11 +96,11 @@ Or as one-off containers against the named volume:
```bash
docker run --rm -v sixflagssupercalendar_park_data:/app/data \
your.registry.host/josh/sixflagssupercalendar:latest \
gitea.thewrightserver.net/josh/sixflagssupercalendar:latest \
npm run discover
docker run --rm -v sixflagssupercalendar_park_data:/app/data \
your.registry.host/josh/sixflagssupercalendar:latest \
gitea.thewrightserver.net/josh/sixflagssupercalendar:latest \
npm run scrape
```
@@ -132,7 +132,7 @@ The registry host is derived automatically from `gitea.server_url` — no `REGIS
```bash
git remote add origin https://gitea.thewrightserver.net/josh/SixFlagsSuperCalendar.git
git push -u origin master
git push -u origin main
```
---