1097cb425c
Publish Container / docker (push) Successful in 15m13s
docker-compose.yml was still pointing to the old GHCR image (ghcr.io/nmemmert/siteforge:latest) after CI was switched to push to git.necloud.us/nate/siteforge:latest, so servers were pulling a stale build that predated the download/header changes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
453 B
YAML
16 lines
453 B
YAML
services:
|
|
portfolio:
|
|
image: git.necloud.us/nate/siteforge:latest
|
|
pull_policy: always
|
|
container_name: siteforge-app
|
|
ports:
|
|
- "4173:4173"
|
|
environment:
|
|
- PORT=4173
|
|
- SITEFORGE_DATA_DIR=/app/data
|
|
- ADMIN_PASSWORD=`generate a random password and set it here`
|
|
- RESEND_API_KEY=`set your Resend API key here`
|
|
volumes:
|
|
- /media/ZimaOS-HD/AppData/siteforge/data:/app/data
|
|
restart: unless-stopped
|