miniflux-legacy/docs/docker.markdown

19 lines
282 B
Markdown
Raw Normal View History

2014-11-01 17:14:33 +01:00
Run Miniflux with Docker
========================
Build your own image
--------------------
```bash
docker build -t <yourname/imagename> .
```
Run container from the image
----------------------------
```bash
docker run -p 80:80 --name miniflux <yourname/imagename>
```
Enjoy!