TeaSpeak is a free to use software for quality voice communication via the Internet.
7.6K
Dockerfile linksWhere to get help:
the TeaSpeak Forums or the TeaSpeak Community Server
Where to file issues:
TeaDocker Issue Tracker
Maintained by:
TeaSpeak Developer WolverinDEV and volunteer h1dden-da3m0n
Source of this description:
TeaDocker/server directory (history)
TeaSpeak is a free to use client and server software for VoIP communication. It's the ideal deal software for everyone who is annoyed about limits and restrictions.
To start a TeaSpeak server and map the ports to the host:
$ docker run -d \
-p 80:80 -p 443:443 \
-v $(pwd)/certs:/etc/ssl/certs \
--restart=on-failure:3 --name teaspeak-web teaspeak/web:latest
Finally, you can now connect to https://localhost in your web-browser of choice,
you will get a self signed certificate warning, which you need to accept to proceed,
and after accepting get loaded into yur self hosted TeaWeb client.
The docker exec command allows you to run commands inside a Docker container.
The following command line will give you a shell inside your teaspeak/web container:
$ docker exec -it teaspeak-web sh
The TeaSpeak web (or more accurately the NginX) log is available through Docker's container log:
$ docker logs teaspeak-web
# or to follow the logs
$ docker logs -f teaspeak-web
docker-composeExample docker-compose.yml for teaspeak:
version: '3.7'
services:
teaspeak-web:
image: teaspeak/web:latest
environment:
- TZ=Europe/Amsterdam
ports:
- "80:80"
- "443:443"
volumes:
- type: bind
source: ./certs
target: /etc/ssl/certs
restart: on-failure:3
Run docker-compose up -d, wait for it to initialize completely, and visit localhost:9987, or host-ip:9987 (as appropriate) with a TeaSpeak client.
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
Content type
Image
Digest
Size
49.6 MB
Last updated
over 5 years ago
docker pull teaspeak/web