{"id":42493242,"url":"https://github.com/icedream/docker-ts3server","last_synced_at":"2026-01-28T12:31:52.243Z","repository":{"id":51230771,"uuid":"87733712","full_name":"icedream/docker-ts3server","owner":"icedream","description":"TeamSpeak3 server as a Docker image!","archived":false,"fork":false,"pushed_at":"2025-12-03T21:46:43.000Z","size":142,"stargazers_count":3,"open_issues_count":9,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-07T03:32:46.387Z","etag":null,"topics":["docker","docker-image","server","teamspeak3","ts3"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/icedream.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-04-09T19:29:38.000Z","updated_at":"2023-07-13T06:20:45.000Z","dependencies_parsed_at":"2025-10-20T16:08:26.327Z","dependency_job_id":"c63edc2b-67b4-43bf-8485-6509ac534f83","html_url":"https://github.com/icedream/docker-ts3server","commit_stats":null,"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/icedream/docker-ts3server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icedream%2Fdocker-ts3server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icedream%2Fdocker-ts3server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icedream%2Fdocker-ts3server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icedream%2Fdocker-ts3server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/icedream","download_url":"https://codeload.github.com/icedream/docker-ts3server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icedream%2Fdocker-ts3server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28845274,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T10:53:21.605Z","status":"ssl_error","status_checked_at":"2026-01-28T10:53:20.789Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-image","server","teamspeak3","ts3"],"created_at":"2026-01-28T12:31:51.616Z","updated_at":"2026-01-28T12:31:52.237Z","avatar_url":"https://github.com/icedream.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TeamSpeak3 Docker image\n\nTeamSpeak3 server as a Docker image!\n\n## Usage\n\nThis container has been preconfigured to store and access configuration and\nlogs from a volume folder at `/data`. The respective parameters are defined as\npart of the entrypoint. When defining **custom parameters**, you should expand\non these parameters by specifying them as __command__, not as __entrypoint__.\n\nYou will have to agree to the TeamSpeak3 server license by either setting the\nenvironment variable `TS3SERVER_LICENSE` to `accept` (you can also set it\nto `view` to view it) or by passing the command line parameter `license_accepted=1`.\n\n### Directly\n\nYou can run this image directly like this:\n\n```sh\ndocker run --name teamspeak3-server \\\n  -e TS3SERVER_LICENSE=accept \\\n  -v /path/to/ts3/data:/data:Z\n  icedream/ts3server\n```\n\n### docker-compose\n\nHere is an example configuration for `docker-compose`:\n\n```yaml\nversion: \"3.7\"\n\nvolumes:\n  ts3server_data:\n\nservices:\n  ts3server:\n    image: icedream/ts3server\n\n    # You can also build the image directly from GitHub like this:\n    #build:\n    #  context: https://github.com/icedream/docker-ts3server.git\n    #\n    #  # Uncomment to use Alpine image variant. Builds Debian image variant\n    #  # otherwise.\n    #  #dockerfile: alpine.Dockerfile\n    #\n    #  # You can set any of the build arguments\n    #  args:\n    #    TS3SERVER_VERSION: 3.3.0\n    #    TS3SERVER_SHA256: \u003csha256 sum of the version you want to build for\u003e\n    #    TS3SERVER_URL: \u003cdirect URL to a mirror of the TeamSpeak3 version\u003e\n    #    # ...\n\n    volumes:\n      - ts3server_data:/data\n\n    ports:\n      - \"9987-9999:9987-9999/udp\" # voice/virtual server UDP ports\n      - \"10011:10011\" # query TCP port\n      - \"30033:30033\" # file transfer TCP port\n\n    environment:\n      TZ: Europe/Berlin # set timezone\n      TS3SERVER_LICENSE: accept # accept server license\n\n    # Define custom parameters for the server here. Especially useful for\n    # automatic first-time setup.\n    #command:\n    #  - dbplugin=ts3db_mariadb\n    #  - dbpluginparameter=ts3db_mariadb.ini\n    #  - dbsqlcreatepath=create_mysql/\n```\n\n**Note:** If you mount a host path as data volume, make sure you created the\nfolder beforehand and set up permissions in a way to allow for a user with the\nID `9999` to read from and write to the directory. You can follow one of these\nsolutions:\n\n1. `chown 9999:9999 /path/to/ts3/data`\n2. `chmod 777 /path/to/ts3/data`\n\n## MySQL/MariaDB\n\nTo make TeamSpeak3 store its SQL data to a MySQL or MariaDB instance, you need\nto pass the following parameters to the container:\n\n- `dbplugin=ts3db_mariadb` (don't change this)\n- `dbpluginparameter=ts3db_mariadb.ini` (you can use any file name, this is where the MySQL/MariaDB settings will be read from relative to the data directory)\n- `dbsqlcreatepath=create_mariadb/` (don't change this, this is relative to the TeamSpeak3 installation's SQL folder which is located at `/opt/teamspeak3/sql/`)\n\n## Activating server license\n\nServer license keys should be pasted as-is in the `/data` volume folder.\n\nAlternatively, you can change the path from which to read the license key using\nthe parameter below:\n\n- `licensepath=/path/to/license.key`\n\nUseful for providing the license key as configuration file for Docker Swarm.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficedream%2Fdocker-ts3server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ficedream%2Fdocker-ts3server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficedream%2Fdocker-ts3server/lists"}