Subject | Hash | Author | Date (UTC) |
---|---|---|---|
New docker image address at dockerhub | 2e9e79947ecb9b62add1ff957d6b71a448d1d87b | GDR! | 2020-08-15 18:00:18 |
Add missing dockerfile | d91e8ea5765bacfe3072d709d8c552d7f59f18d1 | GDR! | 2020-08-15 17:42:53 |
Perform a complete build inside Docker | 92312438844988e45da6b1804cdb19ca7beef7bd | GDR! | 2020-08-15 17:19:52 |
Fix gcc warnings about strncpy | a0fb587f1be623423db9d1e9882341731fab8ec5 | GDR! | 2020-08-15 16:50:44 |
Fix travis | 07fd5cd5506b65afbd15c7289a341cb27da71114 | GDR! | 2020-08-15 16:36:25 |
Use py3 in travis | c5e965f824faaa1a95647c469d0d8e4add17b3cd | GDR! | 2020-08-15 16:29:57 |
FreeBSD build instructions | d20567154fb91de3a73baac9361d3ae99984e55c | GDR! | 2020-08-15 14:44:23 |
FAQ - links to packages | 8691dbe266c51f788f763e0af3c712f3bab97f6f | GDR! | 2020-08-15 14:01:38 |
Try to name the deb appropiately | 9e834d9af82f5819a59313c0b2276ba0dc2b0477 | GDR! | 2020-08-15 08:11:32 |
Lets try creating .tar.gz without dh_make | 5d4dee4428e17f76b3b4a8ca769fad8695d8f02d | GDR! | 2020-08-15 08:04:57 |
Prevent dh_make warnings from stopping the build | ca6a8b1f62e307c0430856619fc2b7797a71ec94 | GDR! | 2020-08-15 08:00:28 |
-y for dh_make | 194a2bb10b581765d0a2a4c3e78965d4ad0e40df | GDR! | 2020-08-15 07:57:58 |
fix dh_make | 7ae361ddb1d5d9e310c196e37c9e50e907c7d79c | GDR! | 2020-08-15 07:54:45 |
ci | 5d7cfcb28e5b477e366dda746b40a99df4a7604f | GDR! | 2020-08-15 07:45:39 |
Build instructions for deb packages | 0aaee3cc822c784e9bbf5d171ca188ba6fe4ed72 | GDR! | 2020-08-15 07:13:10 |
Deb building works | 0583691495f0dcfa146c2111d6b2484328880a6d | GDR! | 2020-08-15 07:10:30 |
python2->python3 | ac66a9f9bfaf86f4c8575c43e04ea87ac8abedb8 | GDR! | 2020-08-15 06:55:49 |
Make install support | 11dc6ec3eb2cae9c861d1eb6fcfe68b4522b4210 | GDR! | 2020-08-14 10:42:23 |
Move generate_tox_bootstrap.py to python3 | d4cf8be653cadc7ee0b2c44f771c5dcc6d34713a | GDR! | 2020-08-14 10:29:41 |
Update FAQ.md | 5cd2b2bc4163b55916ed54481fb1c7d9a61c86a1 | GDR! | 2020-04-22 11:51:13 |
File | Lines added | Lines deleted |
---|---|---|
FAQ.md | 5 | 3 |
File FAQ.md changed (mode: 100644) (index 0d9bbb5..57766ae) | |||
... | ... | Work in progress: | |
63 | 63 | ||
64 | 64 | ## Can I run it with Docker? | ## Can I run it with Docker? |
65 | 65 | ||
66 | I'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). | ||
66 | ATTENTION - DOCKER IMAGE MOVED FROM GITLAB TO DOCKERHUB ON 2020-08-15 | ||
67 | |||
68 | I'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 | ||
68 | 70 | The tox config is stored in `/data` and that's where you want to attach your volumes. | The tox config is stored in `/data` and that's where you want to attach your volumes. |
69 | 71 | ||
70 | 72 | ``` | ``` |
71 | docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -v /tmp/tt:/data -it registry.gitlab.com/gjedeer/tuntox:latest | ||
73 | docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -v /tmp/tt:/data -it gdr1/tuntox:latest | ||
72 | 74 | ``` | ``` |
73 | 75 | ||
74 | 76 | The binary is in `/usr/bin/tuntox` (and `/usr/bin/tokssh`): | The binary is in `/usr/bin/tuntox` (and `/usr/bin/tokssh`): |
75 | 77 | ``` | ``` |
76 | docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -it registry.gitlab.com/gjedeer/tuntox:latest /usr/bin/tuntox -i 1234abc -p | ||
78 | docker run -e 'TUNTOX_SHARED_SECRET=myassfeelsweird' -it gdr1/tuntox:latest /usr/bin/tuntox -i 1234abc -p | ||
77 | 79 | ``` | ``` |
78 | 80 | ||
79 | 81 | ## Can I run it on Windows? | ## Can I run it on Windows? |