diff options
author | Jesús <heckyel@hyperbola.info> | 2021-04-12 20:08:33 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-04-12 20:08:33 -0500 |
commit | 2a2e48024fdf0d7d690165ece06f3e0abbc1bebc (patch) | |
tree | bf1b57e28474198a5f26cc48ef03397c4cf8bb17 /README.md | |
download | tunnel-2a2e48024fdf0d7d690165ece06f3e0abbc1bebc.tar.lz tunnel-2a2e48024fdf0d7d690165ece06f3e0abbc1bebc.tar.xz tunnel-2a2e48024fdf0d7d690165ece06f3e0abbc1bebc.zip |
initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..62073a2 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +# Tunnel + +First set variables `SERVERURL`, `WEBPASSWORD` and `DEFAULT_HOST` +of the `docker-compose.yml` file + +To Generate containers: + +```console +$ docker-compose -f path/to/docker-compose.yml up -d +``` + +or + +```console +$ docker-compose up -d +``` + +To see the QR code generated: + +```console +$ docker exec -it wireguard /app/show-peer 1 +``` + +To add more Peers + +``` +$ docker exec -it wireguard /app/add-peer +``` + +## Fix permission share volumes + +Hyperbola: + +```console +$ chown -R nobody:nobody dnscrypt-proxy +``` + +```console +$ chmod 775 dnscrypt-proxy/cache +``` + +Debian: + +```console +$ chown -R nobody:nogroup dnscrypt-proxy +``` |