Personal docker image setups for Knot/Spindle
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes for the images

+4 -4
+2 -2
Dockerfile
··· 14 14 FROM builder AS build-spindle 15 15 RUN go build -o /usr/bin/spindle -ldflags '-s -w -extldflags "-static"' ./cmd/spindle 16 16 17 - FROM alpine:edge AS knot 17 + FROM alpine:latest AS knot 18 18 EXPOSE 5555 19 19 EXPOSE 22 20 20 ··· 44 44 45 45 ENTRYPOINT ["/init"] 46 46 47 - FROM alpine:edge AS spindle 47 + FROM alpine:latest AS spindle 48 48 49 49 EXPOSE 6555 50 50
+2 -2
rootfs/etc/s6-overlay/scripts/create-sshd-host-keys
··· 12 12 13 13 foreground { 14 14 if -n { test -f /etc/ssh/keys/ssh_host_ecdsa_key } 15 - ssh-keygen -t rsa -f /etc/ssh/keys/ssh_host_ecdsa_key -q -N "" 15 + ssh-keygen -t ecdsa -f /etc/ssh/keys/ssh_host_ecdsa_key -q -N "" 16 16 } 17 17 18 18 foreground { 19 19 if -n { test -f /etc/ssh/keys/ssh_host_ed25519_key } 20 - ssh-keygen -t rsa -f /etc/ssh/keys/ssh_host_ed25519_key -q -N "" 20 + ssh-keygen -t ed25519 -f /etc/ssh/keys/ssh_host_ed25519_key -q -N "" 21 21 }