/ssh-mock

ssh-mock

Primary LanguageShell

SSH Mock

SSH mock based on docker-alpine-sshd

# Build the image
$ docker build . -t ssh-mock

# Run a container
$ docker run \
    --rm \
    -it \
    -p 2222:22 \
    -e USERNAME=somebody \
    -e STORAGE_DIR=/tmp \
    -v /path/to/authorized_keys:/home/somebody/.ssh/authorized_keys \
    ssh-mock:latest