akash2061/ssh-redhat

By akash2061

Updated over 1 year ago

SSH-ready RHEL 9 (UBI9) container with essential tools for testing and learning SSH.

Image
Networking
Security
Operating systems
0

10K+

akash2061/ssh-redhat repository overview

SSH RHEL 9 (UBI9) Container for Testing and Learning

📌 Usage

Pull the image:
docker pull akash2061/ssh-redhat:latest
Run the container:
docker run -d -p 2222:22 --name ssh-container akash2061/ssh-redhat:latest
SSH into the container:
ssh root@localhost -p 2222   # Or IP-Address

Default password: root (change it for security).

📄 Docker Compose

Use 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"

Start with:
docker-compose up -d
SSH into the container:
ssh root@localhost -p 2222   # Or IP-Address

Default password: root (change it for security).

Tag summary

Content type

Image

Digest

sha256:93baafbba

Size

142.5 MB

Last updated

over 1 year ago

docker pull akash2061/ssh-redhat