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