Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Teamspeak #5098

Open
wants to merge 3 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions public/svgs/teamspeak.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions templates/compose/teamspeak.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# documentation: https://hub.docker.com/_/teamspeak/
# slogan: TeamSpeak offers the ideal voice communication for online gaming, education and training, internal business communication, and staying in touch with friends and family. Our primary focus is delivering a solution that is easy to use, with high security standards, excellent voice quality, and low system and bandwidth usage.
# logo: svgs/teamspeak.svg
# port: 9987

services:
teamspeak:
image: 'teamspeak:latest'
restart: always
volumes:
-
type: bind
source: ./teamspeak
target: /var/ts3server
is_directory: true
ports:
- '9987:9987/udp'
- '10011:10011'
- '30033:30033'
environment:
TS3SERVER_DB_PLUGIN: ts3db_mariadb
TS3SERVER_DB_SQLCREATEPATH: create_mariadb
TS3SERVER_DB_HOST: mariadb
TS3SERVER_DB_USER: '${SERVICE_USER_TEAMSPEAKDB}'
TS3SERVER_DB_PASSWORD: '${SERVICE_PASSWORD_TEAMSPEAKDB}'
TS3SERVER_DB_NAME: teamspeak
TS3SERVER_DB_WAITUNTILREADY: 30
TS3SERVER_LICENSE: accept
mariadb:
image: 'mariadb:latest'
volumes:
-
type: bind
source: ./teamspeak-db
target: /var/lib/mysql
is_directory: true
restart: always
environment:
MYSQL_ROOT_PASSWORD: '${SERVICE_PASSWORD_ROOTDB}'
MYSQL_USER: '${SERVICE_USER_TEAMSPEAKDB}'
MYSQL_PASSWORD: '${SERVICE_PASSWORD_TEAMSPEAKDB}'
MYSQL_DATABASE: teamspeak