Skip to content

Instantly share code, notes, and snippets.

@sharpjs
Last active November 19, 2016 19:27
Show Gist options
  • Save sharpjs/59b16b4d0392c864a0cd898bd12e4e6e to your computer and use it in GitHub Desktop.
Save sharpjs/59b16b4d0392c864a0cd898bd12e4e6e to your computer and use it in GitHub Desktop.
Running CrashPlan in Docker on a Synology NAS

Running CrashPlan in Docker on a Synology NAS

Use this container: https://github.com/JrCs/docker-crashplan

...but use this command line:

sudo docker run -d \
  --name    crashplan \
  --net     host \
  --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 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.

sudo docker run -d \
  --env     TZ=CST6CDT \
  --publish 4242:4242 \
  --publish 4243:4243 \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment