summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGDR! <gdr@gdr.name>2020-08-15 20:00:18 +0200
committerGDR! <gdr@gdr.name>2020-08-15 20:00:18 +0200
commit3196377fe33d6a23f22fb47ed4f2b174e370d086 (patch)
tree310e4aced5598a0edcb362d608a139ece6a43721
parent82dc57e4c9e4ef2eeb53224328ac7fa87c694987 (diff)
New docker image address at dockerhub
-rw-r--r--FAQ.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/FAQ.md b/FAQ.md
index 0d9bbb5..57766ae 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -63,17 +63,19 @@ Work in progress:
63 63
64## Can I run it with Docker? 64## Can I run it with Docker?
65 65
66I've made a [Docker image](https://gitlab.com/gjedeer/tuntox/container_registry/) by bundling a static build with Alpine Linux, but I don't think I'm going to remember to keep it up to date at all times. There's a [Dockerfile](Dockerfile) and [docker-compose.yaml](scripts/docker-compose.yaml). 66ATTENTION - DOCKER IMAGE MOVED FROM GITLAB TO DOCKERHUB ON 2020-08-15
67
68I've made a [Docker image](https://hub.docker.com/r/gdr1/tuntox) by bundling a static build with Alpine Linux, it's built automatically by Dockerhub every time I push code to Github. There's a [Dockerfile](Dockerfile) and [docker-compose.yaml](scripts/docker-compose.yaml) if you want to build the image yourself.
67 69
68The tox config is stored in `/data` and that's where you want to attach your volumes. 70The tox config is stored in `/data` and that's where you want to attach your volumes.
69 71
70``` 72```
71docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -v /tmp/tt:/data -it registry.gitlab.com/gjedeer/tuntox:latest 73docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -v /tmp/tt:/data -it gdr1/tuntox:latest
72``` 74```
73 75
74The binary is in `/usr/bin/tuntox` (and `/usr/bin/tokssh`): 76The binary is in `/usr/bin/tuntox` (and `/usr/bin/tokssh`):
75``` 77```
76docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -it registry.gitlab.com/gjedeer/tuntox:latest /usr/bin/tuntox -i 1234abc -p 78docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -it gdr1/tuntox:latest /usr/bin/tuntox -i 1234abc -p
77``` 79```
78 80
79## Can I run it on Windows? 81## Can I run it on Windows?