Last active
November 19, 2016 19:27
-
-
Save sharpjs/59b16b4d0392c864a0cd898bd12e4e6e to your computer and use it in GitHub Desktop.
Running CrashPlan in Docker on a Synology NAS
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 characters
# 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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment