Last active
February 24, 2023 22:28
-
-
Save lexoyo/b24330a03f09baf127f42551e6cd85cc to your computer and use it in GitHub Desktop.
Run rclone in docker in 1 command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -it -p 8080:8080 \ | |
--volume ~/rclone/config:/config/rclone \ | |
--volume ~/rclone/data:/data:shared \ | |
--user $(id -u):$(id -g) \ | |
rclone/rclone \ | |
"$@" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment