Skip to content

Instantly share code, notes, and snippets.

@blue-bird1
Last active October 9, 2018 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blue-bird1/cfdc5f441373c78ec164c6069a318774 to your computer and use it in GitHub Desktop.
Save blue-bird1/cfdc5f441373c78ec164c6069a318774 to your computer and use it in GitHub Desktop.
miniflux #docker
version: '3'
services:
miniflux:
image: miniflux/miniflux:latest
ports:
- "80:8080"
depends_on:
- db
environment:
- DATABASE_URL=postgres://miniflux:secret@db/miniflux?sslmode=disable
db:
image: postgres:10.1
environment:
- POSTGRES_USER=miniflux
- POSTGRES_PASSWORD=secret
volumes:
- miniflux-db:/var/lib/postgresql/data
volumes:
miniflux-db:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment