https://github.com/leonardobringel/ssh-ubuntu-image
Ubuntu image with SSH installed and configured to launch on startup.
https://github.com/leonardobringel/ssh-ubuntu-image
container docker ubuntu
Last synced: over 1 year ago
JSON representation
Ubuntu image with SSH installed and configured to launch on startup.
- Host: GitHub
- URL: https://github.com/leonardobringel/ssh-ubuntu-image
- Owner: LeonardoBringel
- License: mit
- Created: 2023-09-28T05:50:50.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T02:10:39.000Z (over 2 years ago)
- Last Synced: 2025-01-24T22:10:01.722Z (over 1 year ago)
- Topics: container, docker, ubuntu
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/leonardobringel/ssh-ubuntu
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## SSH Ubuntu
Simple Ubuntu image with SSH installed and configured to launch on startup.
## Warning
- This image was designed to run only on CPUs with AMR64 architecture.
- To increase security, it is highly recommended to change the default root password by running the following script: ```echo 'root:YOUR_NEW_PASSWORD' | chpasswd```
## Getting Started
- Pull the image from Docker Hub
```
docker pull leonardobringel/ssh-ubuntu
```
- Create a new Container mapping the port 22
```
docker run -p 2222:22 leonardobringel/ssh-ubuntu
```
- Connect via SSH
```
ssh root@localhost:2222
```