File tree 5 files changed +26
-2
lines changed
5 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,10 @@ A collection of delicious docker recipes.
55
55
## Automation
56
56
57
57
- [x] drone-rsync-arm
58
+ - [x] drone-scp-arm
59
+ - [x] drone-ssh-arm
60
+ - [x] errbot :octocat:
61
+ - [x] hubot :octocat:
58
62
- [x] jenkins-arm :beetle :
59
63
60
64
## Daemon
@@ -65,12 +69,10 @@ A collection of delicious docker recipes.
65
69
- [x] cadvisor
66
70
- [x] casperjs :+1 :
67
71
- [x] collectd
68
- - [x] errbot :octocat:
69
72
- [x] freeradius
70
73
- [x] graphite
71
74
- [x] h2o
72
75
- [x] httpbin :+1 :
73
- - [x] hubot :octocat:
74
76
- [x] influxdb
75
77
- [x] luigi
76
78
- [x] mariadb
Original file line number Diff line number Diff line change
1
+ #
2
+ # Dockerfile for drone-scp-arm
3
+ #
4
+
5
+ FROM easypi/alpine-arm
6
+ MAINTAINER EasyPi Software Foundation
7
+
8
+ RUN apk add --no-cache ca-certificates
9
+ ADD drone-scp /bin
10
+
11
+ ENTRYPOINT ["drone-scp" ]
Original file line number Diff line number Diff line change
1
+ #
2
+ # Dockerfile for drone-ssh-arm
3
+ #
4
+
5
+ FROM easypi/alpine-arm
6
+ MAINTAINER EasyPi Software Foundation
7
+
8
+ RUN apk add --no-cache ca-certificates openssh-client
9
+ ADD drone-ssh /bin
10
+
11
+ ENTRYPOINT ["drone-ssh" ]
You can’t perform that action at this time.
0 commit comments