Ā
Brought to you by
FirePress.orgā |
play-with-ghostā |
GitHubā |
Twitterā
Ā
rclone in a docker container along a CI (continuous integration) to build the Docker image.
utility.sh based on bash-script-templateā GitHubā | Websiteā | Documentationā | Downloadā | Installationā | Forumā
Rclone ("rsync for cloud storage") is a command line program to sync files and directories to and from different cloud storage providers.
At FirePress we use rclone to do cold storage backup outside our clusters.
img_rclone="devmtl/rclone:1.49.1_2019-08-30_12H18s03_4984c21"
docker run -it --rm \
--name rclone-runner \
${img_rclone}
or overide the default command:
img_rclone="devmtl/rclone:1.49.1_2019-08-30_12H18s03_4984c21"
run_this="rclone --version"
docker run -it --rm \
--name rclone-runner \
-v /localpath/data:/data" \
-v /localpath/rclone.conf:/home/usr_rclone/.config/rclone/rclone.conf \
${img_rclone} \
sh -c "${run_this}"
Real life example to uplaod on B2
img_rclone="devmtl/rclone:1.49.1_2019-08-30_12H18s03_4984c21"
run_this="rclone copy --transfers 10 --include ${FILE_TO_UPLOAD} /data ${B2_BUCKET_DESTINATION}"
docker run --rm \
--name rclone-runner \
-v /localpath/data:/data" \
-v /localpath/rclone.conf:/home/usr_rclone/.config/rclone/rclone.conf \
${IMG_rclone} \
sh -c "${run_this}"
Always check on docker hub the most recent build:
https://hub.docker.com/r/devmtl/noti/tagsā
You should use this tag format in production.
${VERSION} _ ${DATE} _ ${HASH-COMMIT}
devmtl/rclone:1.49.1_2019-08-30_12H18s03_4984c21
These tags are also available to quickly test stuff:
docker run --rm -it devmtl/rclone:1.49.1
docker run --rm -it devmtl/rclone:stable
docker run --rm -it devmtl/rclone:latest
If you are looking for an alternative to WordPress, Ghostā might be the CMS you are looking for. Check out our hosting plansā .

Our missionā is to empower freelancers and small organizations to build an outstanding mobile-first website.
Because we believe your website should speak up in your name, we consider our mission completed once your site has become your impresario.
Find me on Twitter @askpascalandyā .
ā The FirePress Teamā š„š°
The power of communities pull request and forks means that 1 + 1 = 3. You can help to make this repo a better one! Here is how:
git checkout -b my-new-featuregit commit -am 'Add some feature'git push origin my-new-featureCheck this post for more details: Contributing to our Github projectā . Also, by contributing you agree to the Contributor Code of Conduct on GitHubā .
Content type
Image
Digest
Size
23.2 MB
Last updated
almost 6 years ago
docker pull devmtl/rclone