mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
251 B
11 lines
251 B
5 years ago
|
#!/bin/sh
|
||
|
docker stop gopherserver
|
||
|
docker rm gopherserver
|
||
|
docker pull tiynger/gopherserver
|
||
|
docker run --name gopherserver \
|
||
|
--restart unless-stopped \
|
||
|
-p 70:70 \
|
||
|
-v gopherserver:/var/gopher \
|
||
|
-e SERVER_NAME='domain.tld' \
|
||
|
-d tiynger/gopherserver
|