docker-crashplan icon indicating copy to clipboard operation
docker-crashplan copied to clipboard

add pro version to crashplan

Open MaraScott opened this issue 7 years ago • 6 comments

MaraScott avatar Oct 03 '17 16:10 MaraScott

Any chance this can be merged in to get newly merged Crashplan business accounts up and running?

visualinventor avatar Nov 09 '17 01:11 visualinventor

Do you really have to do anything? Mine just worked once I changed my account.

edasque avatar Nov 10 '17 18:11 edasque

When I updated after the Crashplan pro switch I started seeing this on my Synology NAS. https://github.com/JrCs/docker-crashplan/issues/35

visualinventor avatar Nov 10 '17 19:11 visualinventor

I am running into issues as well after upgrading to CrashPlan PRO with whats in master. Pulled this patch down and built a new docker image based on it and am able to connect to the servers again. I was about to go down the same path as visualinventor so glad I saw his PR first. Saved me some work :)

mszilagyi avatar Nov 14 '17 09:11 mszilagyi

Can someone post directions how to incorporate the patch and build a new docker image?

On Tue, Nov 14, 2017 at 4:24 AM, Michael Szilagyi [email protected] wrote:

I am running into issues as well after upgrading to CrashPlan PRO with whats in master. Pulled this patch down and built a new docker image based on it and am able to connect to the servers again. I was about to go down the same path as visualinventor so glad I saw his PR first. Saved me some work :)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/JrCs/docker-crashplan/pull/47#issuecomment-344195742, or mute the thread https://github.com/notifications/unsubscribe-auth/AVhXtl3U3FO0dlrywaEmUAKG0rQe6XEFks5s2VxegaJpZM4PsXZD .

vt2001cpe avatar Nov 14 '17 16:11 vt2001cpe

Hi Guys,

Feel free to test my docker version or my github version on your own, I cannnot provide any garanty on data safety or anything else.

I can just tell you I use it since I switch to crashplan pro and so far so good.

below the Dockerfile I use:

version: "3"

services:
  app:
    ports:
      - 4242:4242/tcp
      - 4243:4243/tcp
    environment:
      USR_ID: '<your user id>'
      USR_ID: '<your group id>'
      TZ: "<your timezone>"
    tty: true
    hostname: <your hostname>
    image: davask/d-crashplan:pro
    restart: always
    networks:
      - <your network>
    volumes:
      - /path/to/crashplan:/var/crashplan
      - /path/to/storage:/storage

networks:
    <your network>:
        external: true

anything between "<" and ">" (as ) is to be replaced by your variables but I m guessing you already know that.

MaraScott avatar Nov 14 '17 19:11 MaraScott