diff --git a/README.md b/README.md index d1ccd3f..e4c5f7a 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ A collection of delicious docker recipes. ## Automation - [x] drone-rsync-arm +- [x] drone-scp-arm +- [x] drone-ssh-arm +- [x] errbot :octocat: +- [x] hubot :octocat: - [x] jenkins-arm :beetle: ## Daemon @@ -65,12 +69,10 @@ A collection of delicious docker recipes. - [x] cadvisor - [x] casperjs :+1: - [x] collectd -- [x] errbot :octocat: - [x] freeradius - [x] graphite - [x] h2o - [x] httpbin :+1: -- [x] hubot :octocat: - [x] influxdb - [x] luigi - [x] mariadb diff --git a/drone-scp-arm/Dockerfile b/drone-scp-arm/Dockerfile new file mode 100644 index 0000000..3dd394a --- /dev/null +++ b/drone-scp-arm/Dockerfile @@ -0,0 +1,11 @@ +# +# Dockerfile for drone-scp-arm +# + +FROM easypi/alpine-arm +MAINTAINER EasyPi Software Foundation + +RUN apk add --no-cache ca-certificates +ADD drone-scp /bin + +ENTRYPOINT ["drone-scp"] diff --git a/drone-scp-arm/drone-scp b/drone-scp-arm/drone-scp new file mode 100755 index 0000000..8dd7e5a Binary files /dev/null and b/drone-scp-arm/drone-scp differ diff --git a/drone-ssh-arm/Dockerfile b/drone-ssh-arm/Dockerfile new file mode 100644 index 0000000..3fd2261 --- /dev/null +++ b/drone-ssh-arm/Dockerfile @@ -0,0 +1,11 @@ +# +# Dockerfile for drone-ssh-arm +# + +FROM easypi/alpine-arm +MAINTAINER EasyPi Software Foundation + +RUN apk add --no-cache ca-certificates openssh-client +ADD drone-ssh /bin + +ENTRYPOINT ["drone-ssh"] diff --git a/drone-ssh-arm/drone-ssh b/drone-ssh-arm/drone-ssh new file mode 100755 index 0000000..c2db823 Binary files /dev/null and b/drone-ssh-arm/drone-ssh differ