{"id":13688761,"url":"https://github.com/rfvgyhn/docker-factorio","last_synced_at":"2025-05-01T20:30:41.162Z","repository":{"id":147503111,"uuid":"68354411","full_name":"rfvgyhn/docker-factorio","owner":"rfvgyhn","description":"https://hub.docker.com/r/rfvgyhn/factorio/","archived":false,"fork":false,"pushed_at":"2024-10-22T16:55:02.000Z","size":107,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-12T12:48:43.400Z","etag":null,"topics":["docker","factorio"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rfvgyhn.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}},"created_at":"2016-09-16T05:08:55.000Z","updated_at":"2024-10-22T16:55:05.000Z","dependencies_parsed_at":"2024-01-14T16:08:18.511Z","dependency_job_id":"c726fe08-e2f0-4f5c-be4f-7ca01c364895","html_url":"https://github.com/rfvgyhn/docker-factorio","commit_stats":null,"previous_names":[],"tags_count":231,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfvgyhn%2Fdocker-factorio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfvgyhn%2Fdocker-factorio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfvgyhn%2Fdocker-factorio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfvgyhn%2Fdocker-factorio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rfvgyhn","download_url":"https://codeload.github.com/rfvgyhn/docker-factorio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251940457,"owners_count":21668537,"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":["docker","factorio"],"created_at":"2024-08-02T15:01:22.037Z","updated_at":"2025-05-01T20:30:41.158Z","avatar_url":"https://github.com/rfvgyhn.png","language":"Shell","funding_links":[],"categories":["docker"],"sub_categories":[],"readme":"# Factorio Docker\n\n[Factorio][0] headless server\n\nBranch         | Size             | Version          \n---------------|------------------|---------------\nlatest         | [![Size][6]][2]  | [![Version][7]][2]\nstable         | [![Size][8]][2]  | [![Version][9]][2]\nexperimental   | [![Size][10]][2] | [![Version][11]][2]\n\n## Usage\n\n### Quickstart\n\n```\ndocker run -d --name factorio -p 34197:34197/udp rfvgyhn/factorio\n```\n\n### Volumes\n\n* `/saves` mount for save files\n* `/mods` mount for mods\n* `/config` mount for configuration files\n\n```\ndocker run -d --name factorio \\\n   -p 34197:34197/udp \\\n   -v /host/path/saves:/saves \\\n   -v /host/path/mods:/mods \\\n   -v /host/path/config:/config \\\n   rfvgyhn/factorio\n```\n\n### Options\n\nThe following environment variables are available. The values show the defaults used if\nthe var isn't specified.\n\n* `FACTORIO_SAVE_NAME=meeseeks` the name of the save file in `/saves`\n* `FACTORIO_PORT=` network port to use\n* `FACTORIO_BIND_ADDRESS=` IP address (and optionally port) to bind to (`address[:port]`)\n* `FACTORIO_SERVER_ID=` Path where server ID will be stored or read from\n* `FACTORIO_SCENARIO=` [MOD/]NAME (e.g. `base/wave-defense` will load the wave-defense scenario from the base mod)\n\n```\ndocker run -d --name factorio \\\n   -p 34197:34197/udp \\\n   -v /host/path/saves:/saves \\\n   -v /host/path/mods:/mods \\\n   -v /host/path/config:/config \\\n   -e FACTORIO_SAVE_NAME=rick \\\n   rfvgyhn/factorio\n```\n\n### Configuration\n\nYou may specify the following files by mounting the `/config` volume:\n\n* `server-settings.json`\n* `map-gen-settings.json`\n* `map-settings.json`\n* `server-whitelist.json`\n* `server-banlist.json`\n\nNote that since [version 0.14.12][3], several of the options that were provided\nby environment variables have moved to `server-settings.json`.\n\nThe RCON password is randomly generated and stored in `/config/rconpw`\n\n## Docker Images\n\nThe `latest` tag will always follow the latest [factorio server][1] release\n(including [experimental releases][2]).\n\nThe `stable` tag will always follow the latest stable [factorio server][1] release.\n\nEach version will also have its own tag.\n\n\n[0]: https://www.factorio.com/\n[1]: https://www.factorio.com/download-headless/stable\n[2]: https://www.factorio.com/download-headless/experimental\n[3]: https://forums.factorio.com/viewtopic.php?f=3\u0026t=33591\n[4]: https://img.shields.io/docker/stars/rfvgyhn/factorio.svg\n[5]: https://img.shields.io/docker/pulls/rfvgyhn/factorio.svg\n[6]: https://img.shields.io/docker/image-size/rfvgyhn/factorio/latest\n[7]: https://img.shields.io/badge/v-2.0.8-blue\n[8]: https://img.shields.io/docker/image-size/rfvgyhn/factorio/stable\n[9]: https://img.shields.io/badge/v-2.0.8-blue\n[10]: https://img.shields.io/docker/image-size/rfvgyhn/factorio/0.18.46-experimental\n[11]: https://img.shields.io/badge/v-0.18.46-blue","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frfvgyhn%2Fdocker-factorio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frfvgyhn%2Fdocker-factorio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frfvgyhn%2Fdocker-factorio/lists"}