1
0
Fork 0
Go to file
Pim van den Berg 86a763e0d9 initial version 2022-09-09 11:37:37 +02:00
Dockerfile initial version 2022-09-09 11:37:37 +02:00
README.md initial version 2022-09-09 11:37:37 +02:00
build.sh initial version 2022-09-09 11:37:37 +02:00
rebuild.sh initial version 2022-09-09 11:37:37 +02:00
start.sh initial version 2022-09-09 11:37:37 +02:00

README.md

Jumpbox Docker container

  • Debian slim based image
  • OpenSSH server

Supported tags and respective Dockerfile links

Usage

$ docker run -it \
    --name jumpbox \
    -v $(pwd)/authorized_keys:/root/.ssh/authorized_keys \
    -p 1022:22 \
    pommib/jumpbox:latest

docker-compose

version: "3"

services:
  jumpbox:
    container_name: jumpbox
    image: pommib/jumpbox:latest
    ports:
      - "1022:22/tcp"
    volumes:
      - '${PWD}/authorized_keys:/root/.ssh/authorized_keys'