{"id":21173689,"url":"https://github.com/diginc/minecraft-dockerfiles-2014","last_synced_at":"2026-03-03T19:32:53.048Z","repository":{"id":73671024,"uuid":"15816436","full_name":"diginc/minecraft-dockerfiles-2014","owner":"diginc","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-05T15:50:41.000Z","size":1793,"stargazers_count":3,"open_issues_count":1,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-09T09:04:15.989Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/diginc.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":"2014-01-11T03:58:00.000Z","updated_at":"2022-11-05T15:58:24.000Z","dependencies_parsed_at":"2023-04-27T12:01:37.734Z","dependency_job_id":null,"html_url":"https://github.com/diginc/minecraft-dockerfiles-2014","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/diginc/minecraft-dockerfiles-2014","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diginc%2Fminecraft-dockerfiles-2014","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diginc%2Fminecraft-dockerfiles-2014/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diginc%2Fminecraft-dockerfiles-2014/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diginc%2Fminecraft-dockerfiles-2014/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diginc","download_url":"https://codeload.github.com/diginc/minecraft-dockerfiles-2014/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diginc%2Fminecraft-dockerfiles-2014/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30056069,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2024-11-20T16:48:45.854Z","updated_at":"2026-03-03T19:32:53.030Z","avatar_url":"https://github.com/diginc.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About Minecraft Dockerfiles\nA finished docker product to run Minecraft, Tekkit, Hexxit, and Overviewer (online map).  Dockerfiles based off of Michael Crosby's\n* Advanced Docker Volume tutorial: [http://crosbymichael.com/advanced-docker-volumes.html](https://web.archive.org/web/20190312080932/http://crosbymichael.com/advanced-docker-volumes.html) (archived link, original gone)\n* Dockerfiles: https://github.com/crosbymichael/Dockerfiles\n\n**THIS IS A 2014 PROJECT WITH NO UPDATES, THERE ARE BETTER WAYS TO HOST MC DOCKER NOW**\n\n## Requirements\n1. Docker\n2. Some basic docker and linux knowledge\n\nThis isn't meant to teach docker's terminology or commands; You may be able to lean some docker through using this project, but there are plenty of dedicated tutorials out there for that.  This project is just to help our minecraft server admin out and show him the basics of working with docker containers.\n\n## Instructions\nInstructions below are for tekkit + hexxit simulatenously since that's my use case.  I threw in a stock minecraft Dockerfile because it was what the original advanced docker volume tutorial used...but I'm not using; if you are, you're on your own kid.\n  \n### Build Images\n```\ncd tekkit\nsudo docker build -t 'tekkit' .\ncd ../hexxit\nsudo docker build -t 'hexxit' .\ncd ../mapserver/\nsudo docker build -t 'mapserver' .\ncd ../overviewer/\nsudo docker build -t 'overviewer' .\n```\n\n### Basic Container Run\nThe 3rd command for overviewer is optional here and may not run if your minecraft server hasn't gotten to the spawn generation step yet, it'll be added to crontab later but the initial run takes a while so you may wish to manually run it.\n```\n# Tekkit on primary ports + initial map gen\nTEKKIT=$(sudo docker run -p 25565:25565 -d -name='tekkit_v1' tekkit)\nMAPSERVER=$(sudo docker run -p 8000:8000 -d -name='tekkit_v1_map' mapserver)\nsudo docker run -volumes-from tekkit_v1 -volumes-from tekkit_v1_map -name='tekkit_mapgen' overviewer;\n\n# Hexxit on alternative ports + initial map gen\nHEXXIT=$(sudo docker run -p 25566:25565 -d -name='hexxit_v1' hexxit)\nMAPSERVER=$(sudo docker run -p 8001:8000 -d -name='hexxit_v1_map' mapserver)\nsudo docker run -volumes-from hexxit_v1 -volumes-from hexxit_v1_map -name='hexxit_mapgen' overviewer;\n```\n\n### Overviewer Updating\nOverviewer should be ran through a scheduled crontab so the mapserver's (webserver container) served files get updated continually\n```\ncrontab -e\n# Add:\n*/10 * * * * sudo docker run -volumes-from tekkit_v1 -volumes-from tekkit_v1_map -name='tekkit_mapgen' overviewer;\n*/10 * * * * sudo docker run -volumes-from hexxit_v1 -volumes-from hexxit_v1_map -name='hexxit_mapgen' overviewer;\n```\n\n### Map Autosave\nAuto commiting/saving updated containers is very quick, low impact, and convenient should a crash happen.  If the tag (`-t=`) was cutomized when images were build, DOCKER_TAG should match.  If the -name was matched during the run step, replaced tekkit_v1 and/or hexxit_v1 with your container name.\n```\n# Auto-Save\n*/5 * * * * DOCKER_TAG=tekkit \u0026\u0026 sudo docker commit -m \"$(date +%F_%Hh%Mm%Ss) autosave\" tekkit_v1 $DOCKER_TAG:autosave\n*/5 * * * * DOCKER_TAG=hexxit \u0026\u0026 sudo docker commit -m \"$(date +%F_%Hh%Mm%Ss) autosave\" hexxit_v1 $DOCKER_TAG:autosave\n```\n\n### Viewing logs\nWatch/tail current logs: `sudo docker attach tekkit_v1` (Ctrl+Z to dettach)\n\nOutput ALL logs to screen `sudo docker logs tekkit_v1`\n\n### Map Export as docker container\n```\nsudo docker export tekkit_v1 \u003e ~/tekkit_server_container.tgz\n```\n\n### Importing your old map\n* If you want to dockerize your old map simply use the Dockerfile 'ADD' command to drop map files into /minecraft/world after the existing dockerfile actions, then re-build the docker image...you'll need to `sudo docker rm tekkit_v1` or `hexxit_v1` if you named them.\n```\nExample coming\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiginc%2Fminecraft-dockerfiles-2014","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiginc%2Fminecraft-dockerfiles-2014","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiginc%2Fminecraft-dockerfiles-2014/lists"}