From ced3d768f0442ad9bec058d80b081dbe1d3c91ae Mon Sep 17 00:00:00 2001 From: Nemo Date: Sat, 1 Jun 2019 17:56:07 +0530 Subject: [PATCH] Updated Docker (markdown) --- Docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Docker.md b/Docker.md index 9f6bd57..0b365d0 100644 --- a/Docker.md +++ b/Docker.md @@ -5,7 +5,7 @@ This guide is for people who want to run RSS Bridge using Docker. If you want to ```bash docker create \ --name=rss-bridge \ ---volume :/app/public/whitelist.txt \ +--volume :/app/whitelist.txt \ --publish 3000:80 \ rssbridge/rss-bridge:latest ``` @@ -15,7 +15,7 @@ And access it using `http://IP_Address:3000`. If you'd like to run a specific ve ```bash docker create \ --name=rss-bridge \ ---volume :/app/public/whitelist.txt \ +--volume :/app/whitelist.txt \ --publish 3000:80 \ rssbridge/rss-bridge:$version ``` @@ -29,7 +29,7 @@ version: '2' services: rss-bridge: volumes: - - ./whitelist.txt:/app/public/whitelist.txt + - ./whitelist.txt:/app/whitelist.txt build: context: . image: rssbridge/rss-bridge:latest