Adding rsync to pre installed packages

This commit is contained in:
unknown 2016-05-09 08:50:26 +01:00
parent fa85d4e0b4
commit aa779c7e8b
2 changed files with 8 additions and 4 deletions

View File

@ -9,7 +9,7 @@ echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /
# Install Pre Requisites # Install Pre Requisites
RUN add-apt-repository ppa:mc3man/trusty-media -y RUN add-apt-repository ppa:mc3man/trusty-media -y
RUN apt-get -q update && \ RUN apt-get -q update && \
apt-get install -qy wget libopus0 opus-tools libopus-dev mono-devel unzip ffmpeg apt-get install -qy wget libopus0 opus-tools libopus-dev mono-devel unzip ffmpeg rsync
#Mappings and ports #Mappings and ports
VOLUME ["/config"] VOLUME ["/config"]

View File

@ -5,13 +5,17 @@ Nadeko is written in C# and Discord.net for more information visit https://githu
## Docker Usage ## Docker Usage
``` ```
docker create --name nadeko -v </path/to/appdata>:/config uirel/nadeko docker create --name nadeko -v /<appdata>:/config uirel/nadeko
```
Edit the <appdata> path to the location you want to store your credentials.json files. eg /appdata or /nadeko
Edit your credentials.json file per the guide @ https://github.com/Kwoth/NadekoBot then
``` ```
docker start nadeko docker start nadeko
```
**Parameters** **Parameters**
* `-v /config` - database and nadekobot configs, place your existing configs in this folder, or let the docker create blank ones for you and edit per the information @ https://github.com/Kwoth/NadekoBot * -v /<appdata>:/config - This is the file location of your persistent information. Your DB and credential information
## Updates / Monitoring ## Updates / Monitoring