valency / docker-sshd

SSH Daemon in Docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker with GPU and SSH Access

Ubuntu SSHD

https://hub.docker.com/repository/docker/uiewy/ubuntu-sshd

Ubuntu SSHD is based on 24.04.

Build:

cd Ubuntu
docker build . --tag ubuntu-sshd:24.04

Run:

docker run -dti --privileged -p 22 ubuntu-sshd:24.04

Usage:

ssh -p <port> admin@localhost

The default password is screencast.

CUDA SSHD

https://hub.docker.com/repository/docker/uiewy/cuda-sshd

CUDA SSHD is based on nvidia/cuda:12.2.0-devel-ubuntu22.04.

Build:

cd CUDA
docker build . --tag cuda-sshd:12.2.0

Run:

docker run -dti --privileged -p 22 --gpus '"device=all"' cuda-sshd:12.2.0

Usage:

ssh -p <port> admin@localhost

The default password is screencast.

CUDA WeTTY

https://hub.docker.com/repository/docker/uiewy/cuda-wetty

CUDA WeTTY is based on nvidia/cuda:12.2.0-devel-ubuntu22.04 and butlerx/wetty with NGINX enabled.

Build:

cd WeTTY
docker build . --tag cuda-wetty:12.2.0

Run:

docker run -dti --privileged -p 80 --gpus '"device=all"' cuda-wetty:12.2.0

Usage:

http://localhost:<port>/
http://localhost:<port>/wetty

The default user and password of WeTTY are admin and cephalon.

About

SSH Daemon in Docker

License:MIT License


Languages

Language:Dockerfile 100.0%