add more drone-arm plugins

This commit is contained in:
kev 2017-10-02 16:01:47 +08:00
parent ba66f24ef9
commit c64dcdf96f
5 changed files with 26 additions and 2 deletions

View File

@ -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

11
drone-scp-arm/Dockerfile Normal file
View File

@ -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"]

BIN
drone-scp-arm/drone-scp Executable file

Binary file not shown.

11
drone-ssh-arm/Dockerfile Normal file
View File

@ -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"]

BIN
drone-ssh-arm/drone-ssh Executable file

Binary file not shown.