factorio-docker/README.md

54 lines
2.3 KiB
Markdown
Raw Normal View History

2016-03-04 15:50:01 +01:00
Factorio
=====
Factorio Server in docker
2016-03-24 08:39:16 +01:00
Current Version
-----
0.12.29
2016-03-24 09:42:04 +01:00
### What's new ?
#### Factorio
2016-03-26 10:23:21 +01:00
See [factorio's site](http://www.factorio.com)
2016-03-24 09:42:04 +01:00
#### Docker image
2016-03-24 10:35:28 +01:00
* Automatically takes latest save or autosave. when restarting the container.
2016-03-26 10:49:27 +01:00
* Added possibility to change defautl autosave interval
2016-03-26 10:23:21 +01:00
2016-03-10 11:35:35 +01:00
Versions
-----
2016-03-24 10:30:17 +01:00
I'm keeping the image up to date. If you need to use an older version, checkout out the different [tags](https://hub.docker.com/r/zopanix/factorio/tags/).
2016-03-04 15:50:01 +01:00
How to use ?
-----
3 ways of launching it :
* Without map persistence
* With map persistence
* With existing map
### Without map persistence
Here is the command :
2016-03-26 15:25:32 +01:00
`docker run -d -p [PORT]:34197/udp zopanix/factorio`
2016-03-04 15:50:01 +01:00
This will generate a new random map with default settings.
If you're going to launch it on your local machine, don't use the port 34197, take another one at random.
### With map persistence
2016-03-26 15:25:32 +01:00
`docker run -d -v [PATH]:/opt/factorio/saves -p [PORT]:34197/udp zopanix/factorio`
2016-03-04 15:50:01 +01:00
This will generate a new random map with default settings and save it onto the volume.
Replace [PATH] with a path to a folder on the host where the map will be saved.
### With existing map
2016-03-26 15:25:32 +01:00
`docker run -d -v [PATH]:/opt/factorio/saves -p [PORT]:34197/udp zopanix/factorio`
2016-03-24 10:35:28 +01:00
It's the same as above, it takes the last modified file which contains the word save in the filename as current save when booting the server. This allows when upgrading the container to take the last save, you don't have to rename the last autosave as save.zip
2016-03-26 10:49:27 +01:00
### Advanced usage
#### Autosave interval
You can set the autosave interval. By default it is set at 2 minutes bud you can change it by launching the container with the "FACTORIO_AUTOSAVE_INTERVAL" variable to whatever suits you best.
2016-03-26 15:25:32 +01:00
`docker run -d --env FACTORIO_AUTOSAVE_INTERVAL=[NUMBER] -v [PORT]:34197/udp zopanix/factorio`
2016-03-26 10:49:27 +01:00
Where [NUMBER] is the number of minutes between autosaves.
#### Autosave slots
You can set the number of autosave slots. By default it is set at 3 slots bud you can change it by launching the container with the "FACTORIO_AUTOSAVE_SLOTS" variable to whatever suits you best.
2016-03-26 15:25:32 +01:00
`docker run -d --env FACTORIO_AUTOSAVE_SLOTS=[NUMBER] -v [PORT]:34197/udp zopanix/factorio`
2016-03-26 10:49:27 +01:00
Where [NUMBER] is the number of autosave slots.
2016-03-24 10:35:28 +01:00
ToDo's :
-----
* Adding possibility to add a mod volume