Docker container for acd_cli, a command line tool to access Amazon Cloud Drive
1.3K
acd_cli in a Docker container.
Get the trusted build on the docker hub:
$ docker pull zeitgeist/docker-acdcli
or download and compile the source yourself from Github:
$ git clone https://github.com/alexzeitgeist/docker-acd_cli.git
$ cd docker-acd_cli
$ docker build -t zeitgeist/docker-acdcli .
acd_cli is a command line for read and write accessing Amazon Cloud Drive. Related instructions can be found on its project page.
Since the acd_cli cache directory contains the OAuth token to access your files, I highly recommend mapping a local directory as a volume to permanently store the contents of the acd_cli cache directory. Example:
$ docker run --rm \
-v ~/.cache/acd_cli:/home/user/.cache/acd_cli \
-v /tmp:/tmp \
zeitgeist/docker-acdcli
To simplify the commandline, set a bash alias in ~/.bash_aliases:
alias acd_cli="docker run --rm -v ~/.cache/acd_cli:/home/user/.cache/acd_cli -v /tmp:/tmp zeitgeist/docker-acdcli"
alias acdcli=acd_cli
Note: FUSE dependencies are not installed.
Content type
Image
Digest
sha256:567b1d855…
Size
72.8 MB
Last updated
over 10 years ago
docker pull zeitgeist/docker-acd_cli