factorio-docker/README.md

34 lines
1.0 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-10 11:35:35 +01:00
Versions
-----
I'm keeping the image up to date. If you need to use an older version, checkout out the different 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 :
`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
2016-03-10 10:23:22 +01:00
`docker run -d -v [PATH]:/opt/factorio/saves -p [PORT]:34197/udp 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-10 10:23:22 +01:00
`docker run -d -v [PATH]:/opt/factorio/saves -p [PORT]:34197/udp factorio`
2016-03-04 15:50:01 +01:00
It's the same as above, so if there is a file named save.zip in the [PATH] folder, it will use that map as default.