Initial commit

This commit is contained in:
2024-12-30 11:42:12 -07:00
commit 09ba4114c1
86 changed files with 7522 additions and 0 deletions

11
outbound-proxy/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM tailscale/tailscale:latest
RUN apk add --no-cache \
openssh-client \
bash \
fish \
shadow
RUN echo "/usr/bin/fish" >> /etc/shells && sed -i 's|/root:/bin/ash|/root:/usr/bin/fish|' /etc/passwd
COPY ./ssh-config.sh /ssh-config.sh
RUN chmod +x /ssh-config.sh