- deploy/auto-build.sh: git pull + rebuild only when the repo HEAD or any vault file mtime changed (sha256 signature in .build_state); replaces the Quartz update_quartz_docker.sh loop - systemd user units (5-min cadence, matching the old Quartz timer) - compose service/container renamed garden-next -> garden Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
12 lines
297 B
YAML
12 lines
297 B
YAML
# Serves the prebuilt dist/ — run deploy/build.sh first.
|
|
services:
|
|
garden:
|
|
image: nginx:alpine
|
|
container_name: garden
|
|
restart: unless-stopped
|
|
ports:
|
|
- "18100:80"
|
|
volumes:
|
|
- ../dist:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|