Merge pull request #6 from pecigonzalo/master

Fix mono time issue
This commit is contained in:
Stian Buch Larsen 2015-08-31 10:03:34 +02:00
commit 2e863e9ec2

View File

@ -15,6 +15,7 @@ docker create \
--name sonarr \
-p 8989:8989 \
-e PUID=<UID> -e PGID=<GID> \
-v /dev/rtc:/dev/rtc:ro \
-v </path/to/appdata>:/config \
-v <path/to/tvseries>:/tv \
linuxserver/sonarr
@ -23,6 +24,7 @@ docker create \
**Parameters**
* `-p 8989` - the port sonarr webinterface
* `-v /dev/rtc:/dev/rtc:ro` - map hwclock to the docker hwclock as ReadOnly (mono throws exeptions otherwise)
* `-v /config` - database and sonarr configs
* `-v /tv` - location of TV library on disk
* `-e PGID` for for GroupID - see below for explanation
@ -42,4 +44,4 @@ Part of what makes our containers work so well is by allowing you to specify you
**Credits**
* lonix <lonixx@gmail.com>
* IronicBadger <ironicbadger@linuxserver.io>
* IronicBadger <ironicbadger@linuxserver.io>