Browse Source

add README

Tobias Simetsreiter 4 years ago
parent
commit
d5626efc2a
1 changed files with 8 additions and 0 deletions
  1. 8 0
      README.md

+ 8 - 0
README.md

@@ -0,0 +1,8 @@
+# rclone-docker-config
+a Dockerfile to build a minimal rclone image that can take config from cli
+
+```bash
+docker build -t rclone .
+docker run -v <dir to backup>:/mnt/rclone rclone sync <remote>:<dir> /mnt/rclone
+docker run -v <dir to backup>:/mnt/rclone rclone sync /mnt/rclone <remote>:<dir>
+```