factorio-docker/README.md

107 lines
3.4 KiB
Markdown
Raw Normal View History

2016-10-25 22:48:02 +02:00
![Stars](https://img.shields.io/docker/stars/dtandersen/factorio.svg)
![Pulls](https://img.shields.io/docker/pulls/dtandersen/factorio.svg)
2016-04-15 07:50:29 +02:00
# Supported tags and respective `Dockerfile` links
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-10-25 18:58:54 +02:00
* `0.14.14` [(0.14.14/Dockerfile)](https://github.com/dtandersen/docker_factorio_server/blob/0.14.14/Dockerfile)
2016-10-25 22:48:02 +02:00
* `0.12.32` [(0.12.32/Dockerfile)](https://github.com/dtandersen/docker_factorio_server/blob/dt_0.12.32/Dockerfile)
2016-04-30 00:56:19 +02:00
* `0.12.31` [(0.12.31/Dockerfile)](https://github.com/dtandersen/docker_factorio_server/blob/dt_0.12.31/Dockerfile)
2016-04-27 00:01:32 +02:00
* `0.12.30` [(0.12.30/Dockerfile)](https://github.com/dtandersen/docker_factorio_server/blob/dt_0.12.30/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.
NOTE: This is only the server. The game is available on [Steam](http://store.steampowered.com/app/427520/).
2016-03-24 08:39:16 +01:00
2016-04-15 07:48:52 +02:00
# Features
2016-04-15 07:54:17 +02:00
2016-10-25 19:28:04 +02:00
* Configurable via ```server-config.json```.
* Automatically loads the last save.
* Volumes for saves and mods.
* Small size. Based on Alpine Linux.
2016-03-26 10:23:21 +01:00
2016-04-15 07:48:52 +02:00
# How to use this image?
## Quick Start
2016-10-25 20:59:50 +02:00
Start the server in interactive mode for debugging. The game isn't saved.
```
docker run --rm -it -P dtandersen/factorio
```
* ```--rm``` - Remove container after stopping
* ```-it``` - Interactive mode, i.e. you can see the console
* ```-P``` - Expose all ports.
2016-10-25 19:28:04 +02:00
2016-10-25 20:59:50 +02:00
## Usage
Normally the server runs as a daemon and a configuration file is specified. Volumes are mounted for saves and mods.
Create ```server-config.json``` and modify it to your liking.
2016-03-04 15:50:01 +01:00
2016-03-27 08:56:09 +02:00
```
2016-10-25 18:58:54 +02:00
docker run -d -P \
-v /path/to/server-config.json:/opt/factorio/data/server-config.json \
-v /path/to/saves:/opt/factorio/saves \
-v /path/to/mods:/opt/factorio/mods \
2016-10-25 20:40:53 +02:00
--name factorio \
2016-04-15 07:23:36 +02:00
dtandersen/factorio
2016-03-27 08:56:09 +02:00
```
2016-04-15 07:54:17 +02:00
2016-10-25 20:40:53 +02:00
* ```-d``` - Start the server as a daemon.
* ```-P``` - Expose all ports.
* ```-v``` - Mount volumes for config, mods, and saves.
2016-10-25 19:28:04 +02:00
* ```--name``` - Give the container a name (otherwise it'll be random).
2016-10-25 20:59:50 +02:00
## Saves
The first time the server is started a new map is generated and saved as ```save.zip```. On subsequent runs the newest save is used. To load an old save ```touch save.zip``` and restart the server.
## Mods
Copy them into the mods folder and restart the server.
2016-10-25 19:28:04 +02:00
2016-10-25 20:59:50 +02:00
## Start/Stopping
2016-10-25 19:28:04 +02:00
2016-10-25 20:59:50 +02:00
Assuming the server is named ```factorio```, to stop the server:
2016-10-25 19:28:04 +02:00
```
docker stop factorio
```
2016-10-25 20:59:50 +02:00
To restart the server:
2016-10-25 19:28:04 +02:00
2016-10-25 20:59:50 +02:00
```
docker start factorio
```
2016-03-27 08:57:43 +02:00
2016-10-25 18:58:54 +02:00
## Volumes
2016-04-15 07:48:52 +02:00
2016-10-25 19:28:04 +02:00
* ```/opt/factorio/saves``` - Saves (recommened)
* ```/opt/factorio/mods``` - Mods (optional)
* ```/opt/factorio/data/server-config.json``` - Configuration (recommended)
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-25 19:28:04 +02:00
* ```34197/udp``` - Client (required)
* ```27015/tcp``` - Remote console (optional)
2016-04-15 07:23:36 +02:00
2016-10-25 19:28:04 +02:00
## Logs
2016-04-15 07:54:17 +02:00
Sometimes it's useful to see the logs of a running container:
```
2016-10-26 23:42:44 +02:00
docker logs factorio
2016-04-15 07:54:17 +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).