mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 16:38:50 +00:00
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.
This commit is contained in:
parent
55b294665c
commit
0423e1f268
23
README.md
23
README.md
@ -103,6 +103,29 @@ docker start rss-bridge
|
|||||||
|
|
||||||
Browse http://localhost:3000/
|
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:
|
||||||
|
- </local/custom/path>:/config
|
||||||
|
ports:
|
||||||
|
- 3000:80
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
||||||
|
Then launch with `docker-compose`:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker-compose up
|
||||||
|
```
|
||||||
|
|
||||||
|
Browse http://localhost:3000/
|
||||||
|
|
||||||
### Alternative installation methods
|
### Alternative installation methods
|
||||||
|
|
||||||
[](https://my.scalingo.com/deploy?source=https://github.com/sebsauvage/rss-bridge)
|
[](https://my.scalingo.com/deploy?source=https://github.com/sebsauvage/rss-bridge)
|
||||||
|
Loading…
Reference in New Issue
Block a user