Skip to content

Commit 26d46d6

Browse files
committed
include openssh-client in sshd pkg
Signed-off-by: Avi Deitcher <avi@deitcher.net>
1 parent 1daec53 commit 26d46d6

File tree

11 files changed

+12
-11
lines changed

11 files changed

+12
-11
lines changed

examples/aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- name: rngd
1919
image: linuxkit/rngd:v0.8
2020
- name: sshd
21-
image: linuxkit/sshd:v0.8
21+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
2222
binds:
2323
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
2424
- name: nginx

examples/azure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
- name: dhcpcd
1616
image: linuxkit/dhcpcd:v0.8
1717
- name: sshd
18-
image: linuxkit/sshd:v0.8
18+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
1919
files:
2020
- path: root/.ssh/authorized_keys
2121
source: ~/.ssh/id_rsa.pub

examples/gcp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- name: rngd
2323
image: linuxkit/rngd:v0.8
2424
- name: sshd
25-
image: linuxkit/sshd:v0.8
25+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
2626
binds:
2727
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
2828
- name: nginx

examples/hetzner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
env:
2929
- INSECURE=true
3030
- name: sshd
31-
image: linuxkit/sshd:v0.8
31+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
3232
files:
3333
- path: root/.ssh/authorized_keys
3434
source: ~/.ssh/id_rsa.pub

examples/openstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
- name: rngd
2020
image: linuxkit/rngd:v0.8
2121
- name: sshd
22-
image: linuxkit/sshd:v0.8
22+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
2323
binds:
2424
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
2525
- name: nginx

examples/packet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
env:
2929
- INSECURE=true
3030
- name: sshd
31-
image: linuxkit/sshd:v0.8
31+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
3232
files:
3333
- path: root/.ssh/authorized_keys
3434
source: ~/.ssh/id_rsa.pub

examples/sshd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- name: dhcpcd
2323
image: linuxkit/dhcpcd:v0.8
2424
- name: sshd
25-
image: linuxkit/sshd:v0.8
25+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
2626
files:
2727
- path: root/.ssh/authorized_keys
2828
source: ~/.ssh/id_rsa.pub

examples/vpnkit-forwarder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ onboot:
1919
command: ["sh", "-c", "mkdir /host_var/vpnkit && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"]
2020
services:
2121
- name: sshd
22-
image: linuxkit/sshd:v0.8
22+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
2323
- name: vpnkit-forwarder
2424
image: linuxkit/vpnkit-forwarder:v0.8
2525
binds:

examples/vultr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
- name: rngd
2424
image: linuxkit/rngd:v0.8
2525
- name: sshd
26-
image: linuxkit/sshd:v0.8
26+
image: linuxkit/sshd:666b4a1a323140aa1f332826164afba506abf597
2727
binds:
2828
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
2929
- name: nginx

pkg/sshd/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
1+
FROM linuxkit/alpine:a3d78322152a8b341bdaecfe182a2689fdbdee53 AS mirror
22

33
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
44
RUN apk add --no-cache --initdb -p /out \
@@ -7,6 +7,7 @@ RUN apk add --no-cache --initdb -p /out \
77
busybox \
88
ca-certificates \
99
musl \
10+
openssh-client \
1011
openssh-server \
1112
tini \
1213
util-linux \

0 commit comments

Comments
 (0)