Skip to content

Instantly share code, notes, and snippets.

@russmo
Last active February 28, 2019 20:15
Show Gist options
  • Save russmo/f791a0c90c80f4deb99b7a3da0cd2a71 to your computer and use it in GitHub Desktop.
Save russmo/f791a0c90c80f4deb99b7a3da0cd2a71 to your computer and use it in GitHub Desktop.
Docker run command for jlesage/crashplan-pro on QNAP NAS with CrashPlanPro version 6.6+. Version 6.6 introduces a new user interface and "officially" drops "unofficial" support for headless installations on servers and NAS devices. This docker build implements a handy VNC-in-browser to allow this to run on a NAS. This is what I ran to launch it …
docker run -d \
--name=crashplan-pro \
-h $HOSTNAME \
-e USER_ID=0 \
-e GROUP_ID=0 \
-e TZ=“America/Los_Angeles” \
-p 5800:5800 \
-p 5900:5900 \
-v /share/CACHEDEV1_DATA/Container/config/crashplanpro:/config:rw \
-v /share/CACHEDEV1_DATA:/storage:rw \
jlesage/crashplan-pro:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment