FeedEcho v1.4.1 — Docker Packaging
FeedEcho v1.4.1 — Docker Packaging
No application changes since v1.4.0 — this release adds official Docker packaging.
What's included
- Dockerfile + docker-compose.yml — one-command install, SQLite persisted in a volume
- Pre-built multi-arch images (amd64 + arm64) published to GHCR: `ghcr.io/jcrabapple/feedecho:latest`
- Install docs — pre-built image path, local build path, env var reference, reverse-proxy notes
Fastest install
mkdir feedecho && cd feedecho
printf 'FEEDCHO_AUTH_TOKEN=change-me\nFEEDCHO_CALLBACK_URL=http://localhost:8453/oauth/callback\n' > .env
curl -O https://raw.githubusercontent.com/jcrabapple/feedecho/master/docker-compose.yml
# edit docker-compose.yml: comment out `build: .`, uncomment the `image:` line
docker compose up -dSee the README for full options.