mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-07 03:07:24 +01:00
44 lines
1.5 KiB
Markdown
44 lines
1.5 KiB
Markdown
Factorio
|
|
=====
|
|
Factorio Server in docker
|
|
|
|
Current Version
|
|
-----
|
|
0.12.29
|
|
### What's new ?
|
|
#### Factorio
|
|
See [factorio's site](http://www.factorio.com)
|
|
#### Docker image
|
|
* Automatically takes latest save or autosave. when restarting the container.
|
|
|
|
Versions
|
|
-----
|
|
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/).
|
|
|
|
How to use ?
|
|
-----
|
|
3 ways of launching it :
|
|
* Without map persistence
|
|
* With map persistence
|
|
* With existing map
|
|
|
|
### Without map persistence
|
|
Here is the command :
|
|
`docker run -d -p [PORT]:34197/udp factorio`
|
|
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
|
|
`docker run -d -v [PATH]:/opt/factorio/saves -p [PORT]:34197/udp factorio`
|
|
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
|
|
`docker run -d -v [PATH]:/opt/factorio/saves -p [PORT]:34197/udp factorio`
|
|
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
|
|
|
|
ToDo's :
|
|
-----
|
|
* Adding possibility to add a mod volume
|
|
* Adding possibility to change the number of autosave
|