Skip to content
This repository has been archived by the owner on Jan 23, 2020. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 723 Bytes

docker.markdown

File metadata and controls

29 lines (20 loc) · 723 Bytes

Run Miniflux with Docker

Miniflux can run easily with Docker. There is a Dockerfile in the repository to build your own container.

Use the automated build

Every new commit on the repository trigger a new build on Docker Hub.

docker run -d --name miniflux -p 80:80 -t miniflux/miniflux:latest

The tag latest is the development version of Miniflux, use at your own risk.

Build your own image

docker build -t <yourname/imagename> .

Run container from the image:

docker run -p 80:80 --name miniflux <yourname/imagename>