{"id":14969720,"url":"https://github.com/dtp/docker-minecraft","last_synced_at":"2025-06-12T21:38:44.215Z","repository":{"id":99027748,"uuid":"62934607","full_name":"dtp/docker-minecraft","owner":"dtp","description":"Containerized Minecraft server that runs on Alpine Linux","archived":false,"fork":false,"pushed_at":"2019-05-03T00:19:27.000Z","size":27,"stargazers_count":7,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-31T17:40:37.238Z","etag":null,"topics":["alpine-linux","craftbukkit","curse","curseforge","docker","docker-minecraft","dockerfile","forge","minecraft","minecraft-server","paper","server","spigot","vanilla"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/cmstar/minecraft/","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/dtp.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}},"created_at":"2016-07-09T05:50:59.000Z","updated_at":"2023-12-14T18:23:14.000Z","dependencies_parsed_at":"2023-03-07T14:00:15.645Z","dependency_job_id":null,"html_url":"https://github.com/dtp/docker-minecraft","commit_stats":{"total_commits":39,"total_committers":5,"mean_commits":7.8,"dds":0.5897435897435898,"last_synced_commit":"ffecf9492317ef7146079ee454741b2e4bdbba7f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dtp%2Fdocker-minecraft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dtp%2Fdocker-minecraft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dtp%2Fdocker-minecraft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dtp%2Fdocker-minecraft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dtp","download_url":"https://codeload.github.com/dtp/docker-minecraft/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238301211,"owners_count":19449403,"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","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":["alpine-linux","craftbukkit","curse","curseforge","docker","docker-minecraft","dockerfile","forge","minecraft","minecraft-server","paper","server","spigot","vanilla"],"created_at":"2024-09-24T13:42:16.039Z","updated_at":"2025-02-11T13:32:12.733Z","avatar_url":"https://github.com/dtp.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minecraft server for Docker\nContainerized Minecraft server that runs on Debian Slim\n\n## Available tags and Dockerfiles\n-\t[`vanilla`, `latest`, (*vanilla/Dockerfile*)](https://github.com/dtp/docker-minecraft/blob/master/vanilla/Dockerfile)\n-\t[`forge`, (*forge/Dockerfile*)](https://github.com/dtp/docker-minecraft/blob/master/forge/Dockerfile)\n- [`spongevanilla`, (*spongevanilla/Dockerfile*)](https://github.com/dtp/docker-minecraft/blob/master/spongevanilla/Dockerfile)\n-\t[`paper`, (*vanilla/Dockerfile*)](https://github.com/dtp/docker-minecraft/blob/master/paper/Dockerfile)\n-\t[`spigot`, (*vanilla/Dockerfile*)](https://github.com/dtp/docker-minecraft/blob/master/spigot/Dockerfile)\n-\t[`craftbukkit`, (*vanilla/Dockerfile*)](https://github.com/dtp/docker-minecraft/blob/master/craftbukkit/Dockerfile)\n\n## Using this image\n### Starting the server\nStart a detached instance with port 25565 bound to the host (the default\nminecraft port), where /path/to/minecraft is the path to the minecraft server\ndirectory.\n```console\n$ docker run -itd --name minecraft -p 25565:25565 -v /path/to/minecraft:/data cmstar/minecraft\n```\nBy default, the container will download and run the latest release version of\nMinecraft. To use a different version, set the `VERSION` environmental variable.\n```console\n$ docker run -itd --name minecraft -e VERSION=\"1.10.2\" -p 25565:25565 -v /path/to/minecraft:/data cmstar/minecraft\n```\nAdditionally, to use RCON (when enabled in `server.properties`), simply bind\nport 25575.\n```console\n$ docker run -itd --name minecraft -p 25565:25565 -p 25575:25575 -v /path/to/minecraft:/data cmstar/minecraft\n```\nTo customize the Java Virtual Machine (JVM) arguments, pass them as arguments\nafter specifying the container image.\n```console\n$ docker run -itd --name minecraft -p 25565:25565 -v /path/to/minecraft:/data cmstar/minecraft -Xms512M -Xmx1G\n```\n### Using the Forge image\nStarting a simple Forge server is similar to vanilla.\n```console\n$ docker run -itd --name minecraft -e VERSION=\"1.10.2-recommended\" -p 25565:25565 -v /path/to/minecraft:/data cmstar/minecraft\n```\nTo load a (zipped) Curse modpack, where `modpack.zip` is the path to modpack in\n`/path/to/minecraft`.\n```console\n$ docker run -itd --name minecraft -e VERSION=\"1.10.2-recommended\" -e MODPACK=\"modpack.zip\" -p 25565:25565 -v /path/to/minecraft:/data cmstar/minecraft\n```\nAlternatively, load a (zipped) Curse modpack from a URL.\n```console\n$ docker run -itd --name minecraft -e VERSION=\"1.10.2-recommended\" -e MODPACK=\"https://example.com/modpack.zip\" -p 25565:25565 -v /path/to/minecraft:/data cmstar/minecraft\n```\n### Accessing the server's TTY\n```console\n$ docker attach minecraft\n```\n\n## Notes\nThis container is fully compliant with the Minecraft End User License Agreement\n(EULA).\nIt does not contain any code or JARs distributed by Mojang, and is instead\ndownloaded at runtime. For more information about Minecraft's EULA, please refer\nto https://account.mojang.com/documents/minecraft_eula.\n\nMinecraft\u0026reg; is a registered trademark of Mojang AB.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdtp%2Fdocker-minecraft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdtp%2Fdocker-minecraft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdtp%2Fdocker-minecraft/lists"}