You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# SSH Container for Rabbit User Container Workflows
2
+
3
+
This container provides SSH access to launcher containers running on Rabbit nodes.
4
+
5
+
## Overview
6
+
7
+
The SSH container enables remote access to Rabbit User Container workflows. It requires predetermined UID/GID and generated SSH keys baked into the image for secure authentication.
8
+
9
+
⚠️ **Security Note**: Images are user-specific and the generated keys must be kept secure - loss of keys means loss of access to the container.
10
+
11
+
## Quick Start
12
+
13
+
```bash
14
+
# 1. Generate SSH keys
15
+
make ssh-keys client-keys
16
+
17
+
# 2. Build with your UID/GID
18
+
make build UID=1060 GID=100
19
+
20
+
# 3. Test locally
21
+
make run
22
+
make connect
23
+
24
+
# 4. Publish to your registry
25
+
docker tag ssh-container:latest your-registry.com/ssh-container:latest
0 commit comments