{"id":24272452,"url":"https://github.com/taskbjorn/docker-dstds","last_synced_at":"2026-05-04T18:31:46.983Z","repository":{"id":272069173,"uuid":"915431800","full_name":"taskbjorn/docker-dstds","owner":"taskbjorn","description":"Docker container for the dedicated server of Don't Starve Together - a cooperative wilderness survival game - based on Debian. ","archived":false,"fork":false,"pushed_at":"2025-01-11T20:45:22.000Z","size":146,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T06:33:48.005Z","etag":null,"topics":["debian","dedicated-server","docker","docker-compose","dockerfile","dont-starve-together","gameserver","klei","linux"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taskbjorn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-01-11T20:37:28.000Z","updated_at":"2025-01-12T00:04:44.000Z","dependencies_parsed_at":"2025-01-11T21:42:56.603Z","dependency_job_id":null,"html_url":"https://github.com/taskbjorn/docker-dstds","commit_stats":null,"previous_names":["taskbjorn/docker-dstds"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/taskbjorn/docker-dstds","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fdocker-dstds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fdocker-dstds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fdocker-dstds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fdocker-dstds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taskbjorn","download_url":"https://codeload.github.com/taskbjorn/docker-dstds/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fdocker-dstds/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27435763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-01T02:00:06.371Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["debian","dedicated-server","docker","docker-compose","dockerfile","dont-starve-together","gameserver","klei","linux"],"created_at":"2025-01-15T18:26:33.102Z","updated_at":"2025-12-01T18:02:44.112Z","avatar_url":"https://github.com/taskbjorn.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!WARNING]\r\n\u003e **ARCHIVED REPOSITORY**\r\n\u003e\r\n\u003e This project is deprecated, and this repository is available only for\r\n\u003e archiving purposes. I am also no longer maintaining the associated Docker\r\n\u003e image, which is probably wildly outdated by now.\r\n\r\n# Quick reference\r\n\r\n* **Maintained by:** [taskbjorn](https://github.com/taskbjorn)\r\n\r\n* **Where to get help:** [GitHub](https://github.com/taskbjorn/docker-dstds/issues)\r\n\r\n# Supported tags and respective Dockerfile links\r\n\r\n* [**docker-dstds**](https://github.com/taskbjorn/docker-dstds/blob/main/build)\r\n  * [`latest`, `464835`](https://github.com/taskbjorn/docker-dstds/blob/main/build/latest)\r\n\r\n# What is `docker-dstds`?\r\n\r\n`docker-dstds` is a Docker container for the Don't Starve Together Linux\r\ndedicated server.\r\n\r\n![docker-dstds logo](https://github.com/taskbjorn/docker-dstds/blob/main/docker-dstds.png)\r\n\r\nThe container is based on a minimal Debian image running SteamCMD.\r\n\r\n# How to use this image\r\n\r\n# Basic setup using Docker Compose\r\n\r\n* Clone the git repository in a new folder:\r\n\r\n  ```bash\r\n  git clone https://github.com/taskbjorn/docker-dstds\r\n  ```\r\n\r\n* Substitute `\u003cinsert-your-server-token-here\u003e` under `compose/env/dst.env` with\r\n  the server token obtained from your Klei account.\r\n\r\n* Run the server startup script:\r\n\r\n  ```bash\r\n  cd compose\r\n  bash Allrun.sh\r\n  ```\r\n\r\n## Running additional shards\r\n\r\nBy default, the Compose project initialises two servers, the master server\r\nrunning Overworld and a shard server running a Caves world. To run additional\r\nshards, add the following lines to the services in your docker-compose.yml file:\r\n\r\n```yml\r\n  dst-newshard:\r\n    container_name: dst-newshard\r\n    environment:\r\n      - \"SHARD_NAME=NewShard\"\r\n    image: taskbjorn/dst-dockerised:latest\r\n    networks:\r\n      - backend\r\n    restart: unless-stopped\r\n    volumes:\r\n      - \"data:/home/dst/.klei/DoNotStarveTogether/MyDediServer\"\r\n```\r\n\r\nThen, clone the master server configuration\r\n\r\n```bash\r\ncd compose/MyDediServer\r\ncp -R Master NewShard\r\n```\r\n\r\nEdit `NewShard/server.ini` by increasing `server_port`, `master_server_port` and\r\n`authentication_port` by one digit and setting `is_master` to `false`. Also edit\r\n`NewShard/worldgenoverrides.lua` according to your world generation preferences.\r\n\r\n# Caveats\r\n\r\nBy default, the Compose project uses Docker volumes to store your server data\r\n(as in the example files provided in the repository), you must run the server\r\nusing `bash compose/Allrun.sh`. The script will copy the default configuration\r\nfiles for the Overworld + Caves servers into the Docker volume and set file\r\nownership accordingly. If you would like to change server configuration or setup\r\nadditional shards, you must now do so from the `compose/MyDediServer` directory,\r\nas these files will be copied inside the Docker volume automatically at each\r\ncontainer run.\r\n\r\nAlternatively, one may skip Docker volumes and use a simple mountpoint. To do\r\nso, remove all volume definitions from `compose/docker-compose.yml` and edit the\r\nvolume mountpoints for each service as shown below:\r\n\r\n```yml\r\n(...)\r\n    volumes:\r\n      - \"./MyDediServer:/home/dst/.klei/DoNotStarveTogether/MyDediServer\"\r\n(...)\r\n```\r\n\r\n# License\r\n\r\nThis image is licensed under [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html).\r\n\r\nAs it is often the case with Docker images, some of the software contained in\r\nthis image (e.g. the base image, software included in the base image, etc.) may\r\nbe covered under a difference license.\r\n\r\nPlease remember it is your responsibility as the end-user to ensure that your\r\nuse case complies with the licenses of all included software.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskbjorn%2Fdocker-dstds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaskbjorn%2Fdocker-dstds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskbjorn%2Fdocker-dstds/lists"}