From 8b87a8c95833a4ebad36b505147db2b3ae6eb32e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sun, 27 Aug 2023 16:43:15 +0200 Subject: [PATCH] Add rclone --- Dockerfile | 4 ++++ README.md | 1 + install/get-rclone | 2 ++ 3 files changed, 7 insertions(+) create mode 100755 install/get-rclone diff --git a/Dockerfile b/Dockerfile index a897a64..958b364 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,5 +53,9 @@ RUN /tmp/get-salt COPY install/get-unison /tmp RUN /tmp/get-unison +# rclone +COPY install/get-rclone /tmp +RUN /tmp/get-rclone + COPY config/99-acsone.conf /etc/ssh/ssh_config.d/ RUN chmod og-rw /etc/ssh/ssh_config.d/99-acsone.conf diff --git a/README.md b/README.md index 42839f6..31ecbc2 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ A container image with useful tools to automate deployments. - [pg_activity](https://pypi.org/project/pg-activity) - [htpasswd](https://httpd.apache.org/docs/current/programs/htpasswd.html) - [unison](https://github.com/bcpierce00/unison) +- [rclone](https://rclone.org) It is based on Ubuntu 22.04, but don't rely on it and if you do, be extra sure to pin a tag. diff --git a/install/get-rclone b/install/get-rclone new file mode 100755 index 0000000..6351889 --- /dev/null +++ b/install/get-rclone @@ -0,0 +1,2 @@ +#!/bin/sh +curl https://rclone.org/install.sh | bash