Page 1 of 1

headless server some mod "Incompatible with space-age"

Posted: Fri Mar 27, 2026 4:21 am
by rhinolt
it is reported:
0.000 2026-03-27 04:05:16; Factorio 2.0.73 (build 84377, linux64, headless, space-age)
0.103 Error Util.cpp:81: Failed to load mod "pymodpack":
• pymodpack
• Incompatible with space-age
then i went to https://hub.docker.com/r/factoriotools/factorio
it shows
DLC_SPACE_AGE Enables or disables the mods for DLC Space Age in mod-list.json1 true 2.0.8+
well,i dont have the DLC,and my mods dont need it either,how can i disable that in JSON file precisely?

Re: headless server some mod "Incompatible with space-age"

Posted: Fri Mar 27, 2026 6:40 am
by Loewchen
rhinolt wrote: Fri Mar 27, 2026 4:21 am well,i dont have the DLC,and my mods dont need it either,how can i disable that in JSON file precisely?
You can just set the variable to false if you don't want to use any expansion mods. Otherwise open the json file in a text editor.

Re: headless server some mod "Incompatible with space-age"

Posted: Fri Mar 27, 2026 3:23 pm
by rhinolt
Loewchen wrote: Fri Mar 27, 2026 6:40 am
rhinolt wrote: Fri Mar 27, 2026 4:21 am well,i dont have the DLC,and my mods dont need it either,how can i disable that in JSON file precisely?
You can just set the variable to false if you don't want to use any expansion mods. Otherwise open the json file in a text editor.
how to do that exactly then?

add something on
docker run -itd \
-p 34197:34197/udp \
-p 27015:27015/tcp \
-v /home/factorio:/factorio \
--name factorio \
e28c96daf9f0
or write something into mod-list.json?

Re: headless server some mod "Incompatible with space-age"

Posted: Sat Mar 28, 2026 5:34 am
by rhinolt
anyone?

Re: headless server some mod "Incompatible with space-age"

Posted: Sat Mar 28, 2026 3:39 pm
by rhinolt
say,this easy question cant be solved?
iv tried search key words on this forum and get nothing exactly in post

Re: headless server some mod "Incompatible with space-age"

Posted: Sun Mar 29, 2026 12:51 am
by Techjar
DLC_SPACE_AGE is an environment variable you can set for the docker container.
https://docs.docker.com/reference/cli/d ... r/run/#env

Re: headless server some mod "Incompatible with space-age"

Posted: Sun Mar 29, 2026 7:13 am
by angramania
rhinolt wrote: Sat Mar 28, 2026 3:39 pm say,this easy question cant be solved?
iv tried search key words on this forum and get nothing exactly in post
Because your question is not about factorio but about basic skill with docker.

Re: headless server some mod "Incompatible with space-age"

Posted: Sun Mar 29, 2026 12:14 pm
by rhinolt
angramania wrote: Sun Mar 29, 2026 7:13 am
rhinolt wrote: Sat Mar 28, 2026 3:39 pm say,this easy question cant be solved?
iv tried search key words on this forum and get nothing exactly in post
Because your question is not about factorio but about basic skill with docker.
well,yeah,sorry about that i lack basic docker skill indeed.
so may i ask more instruction?
that i input
docker run -itd -p 34197:34197/udp -p 27015:27015/tcp -v /home/factorio:/factorio -e DLC_SPACE_AGE=false --name factorio e28c96daf9f0
docker run -itd -p 34197:34197/udp -p 27015:27015/tcp -v /home/factorio:/factorio --env DLC_SPACE_AGE=false --name factorio e28c96daf9f0
both got error message

Re: headless server some mod "Incompatible with space-age"

Posted: Sun Mar 29, 2026 12:38 pm
by rhinolt
ah,solved
that i put a wrong line in mod-list.json
thanks all