Files
play-with-docker/Dockerfile.ssh
Marcos Lilljedahl e00dfb638b Run powershell
2017-08-21 14:53:27 -03:00

8 lines
224 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} powershell; done