Factorio headless server in a Docker container. https://hub.docker.com/r/factoriotools/factorio/
Go to file
2016-10-26 17:36:00 -07:00
build.sh utility script 2016-10-25 18:31:07 +00:00
docker-entrypoint.sh follow symlink 2016-10-27 00:08:21 +00:00
Dockerfile use one main /factorio volume 2016-10-26 23:15:09 +00:00
factorio.crt added CA root; removed domain cert 2016-04-14 22:05:59 -07:00
LICENSE Initial commit 2016-02-25 15:50:35 +01:00
README.md minor text changes 2016-10-26 17:36:00 -07:00
run.sh use one main /factorio volume 2016-10-26 23:15:09 +00:00

Stars Pulls

Versions

What is Factorio?

Factorio is a game in which you build and maintain factories.

You will be mining resources, researching technologies, building infrastructure, automating production and fighting enemies. Use your imagination to design your factory, combine simple elements into ingenious structures, apply management skills to keep it working and finally protect it from the creatures who don't really like you.

The game is very stable and optimized for building massive factories. You can create your own maps, write mods in Lua or play with friends via Multiplayer.

NOTE: This is only the server. The game is available on factorio.com or Steam.

Usage

Quick Start

Begin by running the server to create the necessary folder structure and configuration files. For this example we'll use /tmp/factorio to store our data.

docker run -d -P -v /tmp/factorio:/factorio --name factorio dtandersen/factorio

Here is an explanation of the options:

  • --d - Run as a daemon (detached).
  • -P - Expose all ports.
  • -v - Mount /tmp/factorio on the local file system to /factorio in the container.
  • --name - Name the container factorio (otherwise it has a random name).

Check the logs to see what happened:

docker logs factorio

Stop the server:

docker stop factorio

Now there's a server-settings.json file in the folder /tmp/factorio/config. Modify this to your liking.

Restart the server:

docker start factorio

Try to connect to the server. Check the logs if it isn't working.

Saves

A new map (save.zip) is generated the first time the server is started. On subsequent runs the newest save is used.

To load an old save touch save.zip and restart the server.

To generate a new map delete all of the saves and restart the server.

For custom map settings edit map-gen-settings.json in /tmp/factorio/config. Then generate a new map.

Mods

Copy the mods into the mods folder and restart the server.

Container Details

Volumes

The container has one volume located at /factorio. Under this folder there are sub-folders for configuration, mods, and saves.

  • /factorio
    • /config
      • server-settings.json
      • map-gen-settings.json
    • /mods
    • /saves

Ports

  • 34197/udp - Factorio clients (required).
  • 27015/tcp - RCON (optional).

Credits

Based on Zopanix' Factorio Server.