From a0e3500d3bb5b30e89326566923b6e41fbaaed0a Mon Sep 17 00:00:00 2001 From: Reiuiji Date: Mon, 12 Dec 2016 01:09:44 -0500 Subject: [PATCH] Updated README --- docker/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docker/README.md b/docker/README.md index 6f292783..9d835440 100644 --- a/docker/README.md +++ b/docker/README.md @@ -10,13 +10,13 @@ The docker image creates a volume to hold the NadekoBot application to be able t To initialize NadekoBot, run this: -`docker run --name=NadekoBot -t reiuiji/nadeko` +`docker run --name=NadekoBot -t reiuiji/nadekobot:stable` If you want to create a separate volume to handle the data for NadekoBot run the following. ```Nadeko_DATA="NadekoBot-data" docker volume create --name $Nadeko_DATA -docker run --name=NadekoBot -v $Nadeko_DATA:/opt -t reiuiji/nadeko +docker run --name=NadekoBot -v $Nadeko_DATA:/opt -t reiuiji/nadekobot:stable ``` If you want to link the volumes you can link credentials.json and data individual. @@ -25,6 +25,10 @@ If you want to link the volumes you can link credentials.json and data individua `-v /path/to/data:/opt/NadekoBot/src/NadekoBot/bin/Release/netcoreapp1.0/data` +If you want to use the latest developmental version then change tag from "stable" to "dev". + +`docker run --name=NadekoBot -t reiuiji/nadekobot:dev` + Build -----