- Add self-hosted GoatCounter via systemd binary service (stats.monotrope.au) - Add Miniflux RSS reader via Docker Compose (reader.monotrope.au) - Extend Ansible playbook with goatcounter and miniflux tags; all provisioning is idempotent - Add Caddy reverse proxy blocks for both new services - Inject GoatCounter script in baseof.html (production builds only) - Add goatcounter and miniflux Makefile targets - Rewrite CLAUDE.md to reflect actual project state Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
39 lines
945 B
YAML
39 lines
945 B
YAML
services:
|
|
miniflux:
|
|
image: miniflux/miniflux:latest
|
|
restart: unless-stopped
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
environment:
|
|
DATABASE_URL: "postgres://miniflux:${MINIFLUX_DB_PASSWORD}@db/miniflux?sslmode=disable"
|
|
RUN_MIGRATIONS: "1"
|
|
CREATE_ADMIN: "1"
|
|
ADMIN_USERNAME: "${MINIFLUX_ADMIN_USER}"
|
|
ADMIN_PASSWORD: "${MINIFLUX_ADMIN_PASSWORD}"
|
|
BASE_URL: "https://reader.monotrope.au"
|
|
env_file:
|
|
- .env
|
|
|
|
db:
|
|
image: postgres:16-alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- miniflux_db:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_DB: miniflux
|
|
POSTGRES_USER: miniflux
|
|
POSTGRES_PASSWORD: "${MINIFLUX_DB_PASSWORD}"
|
|
env_file:
|
|
- .env
|
|
healthcheck:
|
|
test: ["CMD", "pg_isready", "-U", "miniflux"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
volumes:
|
|
miniflux_db:
|