Setting up a testing lab
https://piefed.social/c/sysadmin/p/1863269/setting-up-a-testing-lab
Setting up a testing lab
https://piefed.social/c/sysadmin/p/1863269/setting-up-a-testing-lab
The Athletic doing the work for me!
https://piefed.social/c/formuladank/p/1811966/the-athletic-doing-the-work-for-me
Some notes:
My compose file:
services:
heaper-postgres:
image: ghcr.io/janlunge/heaper-postgres:latest
container_name: heaper-postgres
environment:
POSTGRES_USER: $POSTGRES_USER
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
POSTGRES_DB: $POSTGRES_DB
ports:
- "5432:5432"
volumes:
- /path/to/heaper/postgres:/var/lib/postgresql/data
networks:
- heaper
healthcheck:
test: ["CMD-SHELL", "pg_isready -U heaper -d heaper || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
heaper:
image: ghcr.io/janlunge/heaper:latest
container_name: heaper
platform: linux/amd64
environment:
HOSTNAME: heaper.caruthers.us
ENABLE_INTERNAL_POSTGRES: "false"
DB_HOST: heaper-postgres:5432
DB_USER: $POSTGRES_USER
DB_PASS: $POSTGRES_PASSWORD
DB_NAME: $POSTGRES_DB
ports:
- "3000:443"
- "4499:80"
volumes:
- /path/to/heaper/config:/usr/src/app/config
- /path/to/heaper/thumbnails:/mnt/thumbnails
- /path/to/heaper/storage:/mnt/storage
networks:
- heaper
depends_on:
heaper-postgres:
condition: service_healthy
healthcheck:
# Docs show example health probes; adjust host/port if your container differs.
test: ["CMD-SHELL", "curl -fsS http://localhost:8080/api >/dev/null || exit 1"]
interval: 15s
timeout: 5s
retries: 5
start_period: 30s
networks:
heaper:
name: heaper
I have the DB, config, and thumbnails on local NVME, and storage on NFS-mounted NAS. Working fine so far.
Heaper, new tools to organize docs, photos [YouTube]
https://piefed.social/c/selfhosted/p/1799077/heaper-new-tools-to-organize-docs-photos-youtube
Conservative lawmakers plan to investigate Bad Bunny’s Super Bowl halftime show
Tip: macOS Mail Changes From Address
https://piefed.social/c/apple_enthusiast/p/1735564/tip-macos-mail-changes-from-address
TIL: Cmd+Shift+Delete
https://piefed.social/c/apple_enthusiast/p/1699098/til-cmd-shift-delete
Finally figured out how to manually update book covers in CWA!