wernight / docker-duplicity

Dockerize "duplicity" backup tool.
https://hub.docker.com/r/wernight/duplicity/
Apache License 2.0
39 stars 30 forks source link

Use docker-duplicity on Raspberry Pi #14

Open juriansluiman opened 5 years ago

juriansluiman commented 5 years ago

It seems the base alpine:3.8 is not working on Raspberry Pi hardware:

standard_init_linux.go:211: exec user process caused "exec format error"

Alpine does support ARM architecture, is there a way to make your dockerfile multiplatform?

juriansluiman commented 4 years ago

@wernight any ideas?

werdnum commented 4 years ago

There's nothing wrong with the Dockerfile, it's just only built for amd64. If you clone the repository, you can build it yourself with docker build ., or for a multiarch setup, docker buildx build --platform=linux/arm64,linux/amd64,linux/arm/v7 ..

wernight commented 4 years ago

If it works then I can add a Dockerfile.armhf similar to https://github.com/wernight/docker-ngrok/

ashalliants commented 2 years ago

Can confirm this works, and would love for it to be build for arm 8 support :)