factorio-docker/README.md

91 lines
2.8 KiB
Markdown
Raw Normal View History

2016-10-27 02:36:00 +02:00
![Stars](https://img.shields.io/docker/stars/dtandersen/factorio.svg) ![Pulls](https://img.shields.io/docker/pulls/dtandersen/factorio.svg)
2016-10-25 22:48:02 +02:00
2016-10-27 02:36:00 +02:00
# Versions
2016-04-15 07:45:25 +02:00
2016-10-25 22:48:02 +02:00
* `0.14.16`, `latest` [(0.14.16/Dockerfile)](https://github.com/dtandersen/docker_factorio_server/blob/0.14.16/Dockerfile)
2016-04-15 07:45:25 +02:00
2016-04-15 07:48:52 +02:00
# What is Factorio?
2016-04-15 07:37:25 +02:00
[Factorio](https://www.factorio.com) 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.
2016-10-27 02:36:00 +02:00
NOTE: This is only the server. The game is available on [factorio.com](https://www.factorio.com) or [Steam](http://store.steampowered.com/app/427520/).
2016-03-24 08:39:16 +01:00
2016-10-27 01:56:00 +02:00
# Usage
2016-04-15 07:48:52 +02:00
## Quick Start
2016-10-27 01:46:21 +02:00
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.
2016-10-25 20:59:50 +02:00
```
2016-10-27 01:41:54 +02:00
docker run -d -P -v /tmp/factorio:/factorio --name factorio dtandersen/factorio
2016-10-25 20:59:50 +02:00
```
2016-10-27 01:30:32 +02:00
Here is an explanation of the options:
2016-10-27 01:41:54 +02:00
* ```--d``` - Run as a daemon (detached).
2016-10-25 20:59:50 +02:00
* ```-P``` - Expose all ports.
2016-10-27 01:41:54 +02:00
* ```-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).
2016-10-25 20:59:50 +02:00
2016-10-27 01:41:54 +02:00
Check the logs to see what happened:
2016-03-04 15:50:01 +01:00
2016-03-27 08:56:09 +02:00
```
2016-10-27 01:41:54 +02:00
docker logs factorio
2016-03-27 08:56:09 +02:00
```
2016-04-15 07:54:17 +02:00
2016-10-27 01:41:54 +02:00
Stop the server:
2016-10-27 01:30:32 +02:00
2016-10-27 02:36:00 +02:00
```
docker stop factorio
```
2016-10-27 01:41:54 +02:00
2016-10-27 01:46:21 +02:00
Now there's a ```server-settings.json``` file in the folder ```/tmp/factorio/config```. Modify this to your liking.
2016-10-27 01:41:54 +02:00
Restart the server:
2016-10-27 02:36:00 +02:00
```
docker start factorio
```
2016-10-27 01:41:54 +02:00
Try to connect to the server. Check the logs if it isn't working.
2016-10-25 19:28:04 +02:00
2016-10-25 20:59:50 +02:00
## Saves
2016-10-27 01:46:21 +02:00
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.
2016-10-27 01:30:32 +02:00
To generate a new map delete all of the saves and restart the server.
2016-10-27 01:46:21 +02:00
For custom map settings edit ```map-gen-settings.json``` in ```/tmp/factorio/config```. Then generate a new map.
2016-10-25 20:59:50 +02:00
## Mods
2016-10-27 01:30:32 +02:00
Copy the mods into the mods folder and restart the server.
2016-10-25 19:28:04 +02:00
2016-10-27 01:56:00 +02:00
# Container Details
2016-10-25 18:58:54 +02:00
## Volumes
2016-04-15 07:48:52 +02:00
2016-10-27 01:56:00 +02:00
The container has one volume located at ```/factorio```. Under this folder there are sub-folders for configuration, mods, and saves.
2016-10-27 01:30:32 +02:00
* ```/factorio```
2016-10-27 01:53:13 +02:00
* ```/config```
* ```server-settings.json```
* ```map-gen-settings.json```
* ```/mods```
* ```/saves```
2016-04-15 07:48:52 +02:00
2016-10-25 18:58:54 +02:00
## Ports
2016-04-15 07:54:17 +02:00
2016-10-27 01:52:05 +02:00
* ```34197/udp``` - Factorio clients (required).
* ```27015/tcp``` - RCON (optional).
2016-04-15 07:23:36 +02:00
2016-04-15 07:48:52 +02:00
# Credits
2016-04-15 07:23:36 +02:00
Based on [Zopanix' Factorio Server](https://github.com/zopanix/docker_factorio_server).