We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a1b368 commit 532404cCopy full SHA for 532404c
README.md
@@ -24,6 +24,10 @@ using just an SSH keypair? Well now it's possible.
24
Run our [cmd/docker](./cmd/docker/) example to see it in action!
25
26
```bash
27
+# setup auth
28
+mkdir ssh_data
29
+cat ~/.ssh/id_ed25519.pub > ./ssh_data/authorized_keys
30
+
31
# start a registry
32
docker run -d -p 5000:5000 --restart always --name registry registry:2
33
# run the SSH app
@@ -35,6 +39,7 @@ ssh -L 1338:localhost:80 \
35
39
-o StrictHostKeyChecking=no \
36
40
-N \
37
41
localhost
42
38
43
# tag image
44
docker tag alpine localhost:1338/alpine
45
# push image
0 commit comments