Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gregdel/docker-glorytun

glorytun (mud) inside a docker container
https://github.com/gregdel/docker-glorytun

docker glorytun mud udp vpn

Last synced: about 2 months ago
JSON representation

glorytun (mud) inside a docker container

Awesome Lists containing this project

README

        

# glorytun-mud inside a docker container

### Enable forwarding on the host

```
echo 1 > /proc/sys/net/ipv4/ip_forward
```

### Build

```
docker build -t gregdel/glorytun:0.89 .
```

### Run

#### From the cli

```
docker run -d -e GLORYTUN_KEY=YOUR_KEY -p "5000:5000/udp" --cap-add=NET_ADMIN --device /dev/net/tun --name mud gregdel/glorytun:0.89
```

#### With a docker-compose file

```
cp docker-compose.example.yml docker-compose.yml
docker-compose build
docker-compose up -d
```