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.
13 lines
282 B
13 lines
282 B
5 years ago
|
#!/bin/sh
|
||
|
docker stop teamspeak3
|
||
|
docker rm teamspeak3
|
||
|
docker pull teamspeak:latest
|
||
|
docker run --name teamspeak3 \
|
||
|
--restart unless-stopped \
|
||
|
-p 9987:9987/udp \
|
||
|
-p 10011:10011 \
|
||
|
-p 30033:30033 \
|
||
|
-v teamspeak3:/var/ts3server \
|
||
|
-e TS3SERVER_LICENSE=accept \
|
||
|
-d teamspeak:latest
|