From 0423e1f268c872ad0d3ca117373837f3377ed44d Mon Sep 17 00:00:00 2001 From: Steve Joerger Date: Fri, 2 Dec 2022 22:56:37 -0500 Subject: [PATCH] Issue 3174 - Add docker-compose instructions to main README.md (#3175) * Added instructions to use docker-compose copied from wiki with extra step of docker-compose command. * Added header to differentiate docker-compose section. Added missing step to browse to url. --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 437c6909..beb97470 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,29 @@ docker start rss-bridge Browse http://localhost:3000/ +#### Install with docker-compose + +Create a `docker-compose.yml` file locally with with the following content: +```yml +version: '2' +services: + rss-bridge: + image: rssbridge/rss-bridge:latest + volumes: + - :/config + ports: + - 3000:80 + restart: unless-stopped +``` + +Then launch with `docker-compose`: + +```bash +docker-compose up +``` + +Browse http://localhost:3000/ + ### Alternative installation methods [![Deploy on Scalingo](https://cdn.scalingo.com/deploy/button.svg)](https://my.scalingo.com/deploy?source=https://github.com/sebsauvage/rss-bridge)