SSH-ready RHEL 9 (UBI9) container with essential tools for testing and learning SSH.
10K+
docker pull akash2061/ssh-redhat:latest
docker run -d -p 2222:22 --name ssh-container akash2061/ssh-redhat:latest
ssh root@localhost -p 2222 # Or IP-Address
Default password: root (change it for security).
docker-compose.yaml for easy deployment:services:
redhat:
image: akash2061/ssh-redhat:latest
container_name: ssh-rh
stdin_open: true
tty: true
ports:
- "2222:22"
docker-compose up -d
ssh root@localhost -p 2222 # Or IP-Address
Default password: root (change it for security).
Content type
Image
Digest
sha256:93baafbba…
Size
142.5 MB
Last updated
over 1 year ago
docker pull akash2061/ssh-redhat