Last active
November 19, 2016 19:27
Revisions
-
sharpjs revised this gist
Nov 19, 2016 . 1 changed file with 9 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,9 +8,6 @@ Use this container: https://github.com/JrCs/docker-crashplan sudo docker run -d \ --name crashplan \ --net host \ --volume /volume1/crashplan/app:/var/crashplan \ --volume /volume1/crashplan/data:/storage \ --volume /volume1/Family:/volume1/Family \ @@ -19,3 +16,12 @@ sudo docker run -d \ ``` If all looks well, don't forget to enable auto-restart via the Docker app. Previously, I included these lines, but I think they hurt more than helped. I ended up with two `TZ` variables, and with ports specified, the container kept reverting back to the `bridge` network. ```sh sudo docker run -d \ --env TZ=CST6CDT \ --publish 4242:4242 \ --publish 4243:4243 \ ``` -
sharpjs renamed this gist
Jul 24, 2016 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,10 @@ # Running CrashPlan in Docker on a Synology NAS Use this container: https://github.com/JrCs/docker-crashplan ...but use this command line: ```sh sudo docker run -d \ --name crashplan \ --net host \ @@ -13,5 +16,6 @@ sudo docker run -d \ --volume /volume1/Family:/volume1/Family \ --volume /volume1/homes:/volume1/homes \ jrcs/crashplan:latest ``` If all looks well, don't forget to enable auto-restart via the Docker app. -
sharpjs created this gist
Jul 24, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ # Running CrashPlan in Docker on a Synology NAS # https://github.com/JrCs/docker-crashplan sudo docker run -d \ --name crashplan \ --net host \ --env TZ=CST6CDT \ --publish 4242:4242 \ --publish 4243:4243 \ --volume /volume1/crashplan/app:/var/crashplan \ --volume /volume1/crashplan/data:/storage \ --volume /volume1/Family:/volume1/Family \ --volume /volume1/homes:/volume1/homes \ jrcs/crashplan:latest # If all looks well, don't forget to enable auto-restart.