The official container and documentation was made by prologic.
Set the following ports with the -p tag.
| Container Port | Recommended outside port | Protocol | Description |
|---|---|---|---|
| 8000 | 8000 | TCP | port to proxy the gopher site as http to |
There are some special variables to set.
| Flag | Usage |
|---|---|
| -uri | define the gopher site to proxy (just 'domain.tld' is enough) |
#!/bin/sh
docker stop gopheroverhttp
docker rm gopheroverhttp
docker pull prologic/gopherproxy
docker run --name gopheroverhttp \
--restart unless-stopped \
-p 8000:8000 \
-d prologic/gopherproxy \
-uri 'domain.tld'