Skip to content

Instantly share code, notes, and snippets.

@sharpjs
Last active November 19, 2016 19:27

Revisions

  1. sharpjs revised this gist Nov 19, 2016. 1 changed file with 9 additions and 3 deletions.
    12 changes: 9 additions & 3 deletions CrashPlan.md
    Original 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 \
    --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 \
    @@ -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 \
    ```
  2. sharpjs renamed this gist Jul 24, 2016. 1 changed file with 6 additions and 2 deletions.
    8 changes: 6 additions & 2 deletions CrashPlan.txt → CrashPlan.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,10 @@
    # Running CrashPlan in Docker on a Synology NAS

    # https://github.com/JrCs/docker-crashplan
    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.
    If all looks well, don't forget to enable auto-restart via the Docker app.
  3. sharpjs created this gist Jul 24, 2016.
    17 changes: 17 additions & 0 deletions CrashPlan.txt
    Original 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.