An open API service indexing awesome lists of open source software.

https://github.com/henry40408/alpine-ssh

Very basic SSH server based on Alpine Linux for testing purpose only
https://github.com/henry40408/alpine-ssh

alpine alpine-ssh deprecated ssh-server testing

Last synced: 9 months ago
JSON representation

Very basic SSH server based on Alpine Linux for testing purpose only

Awesome Lists containing this project

README

          

# alpine-ssh [![CircleCI](https://circleci.com/gh/henry40408/alpine-ssh.svg?style=shield)](https://circleci.com/gh/henry40408/alpine-ssh) [![Docker Repository on Quay](https://quay.io/repository/henry40408/alpine-ssh/status "Docker Repository on Quay")](https://quay.io/repository/henry40408/alpine-ssh) ![stability-deprecated](https://img.shields.io/badge/stability-deprecated-red.svg)

> Very basic SSH server based on Alpine Linux for testing purpose only

## Deprecation Warning

This repository was originally created for used on [Concourse CI](https://concourse-ci.org/). Since I don't use Concourse CI anymore, this repository would not be updated anymore. Use at your own risk.

## Caveats

This image is for testing purpose only, and **should not be used in production
environment**.

## Username and Password

Username is `root` and password is `toor`.

## Tips

It's recommend to add some options when directly connecting to SSH server:

```bash
$ ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@localhost
```

Thus host key and hostname would not be saved, since the key is changed every
time the container is created.

## License

MIT