8 lines
213 B
Docker
8 lines
213 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache openssh-client
|
|
|
|
COPY ./windows /root/.ssh/id_rsa
|
|
|
|
CMD while true; do ssh -L 2375:${WINDOWS_ENDPOINT}:2375 -q -o StrictHostKeyChecking=no Administrator@${WINDOWS_ENDPOINT}; done
|