Necesse is a top down sandbox action-adventure exploration game in which you progress your character and settlement through fighting, mining, exploring, crafting, fishing, trading and more. The world is procedurally generated, taking place on smaller islands each with a different biome, cave system, enemies and loot.
NOTE: This is only the server. The full game is available on Steam Early Access.
Run the server to create the necessary folder structure and configuration files. For this example the data will be stored in /opt/necesse.
sudo mkdir -p /opt/necesse
sudo docker run -d \
-p 14159:14159/udp \
-v /opt/necesse:/config \
--name necesse \
--restart=always \
pixil/necesse
By default, a new world named myworld.zip is generated the first time the server is started.
You can use your existing world by copying the world's zip file to /opt/necesse/saves/. Then set the environment variable WORLD_NAME to the name of the file in your saves directory without the .zip extension.
sudo mkdir -p /opt/necesse
sudo docker run -d \
-p 14159:14159/udp \
-v /opt/necesse:/config \
-e WORLD_NAME=replaceme \
--name necesse \
--restart=always \
pixil/necesse
Content type
Image
Digest
sha256:2dbd2b4c9…
Size
101.9 MB
Last updated
over 2 years ago
docker pull pixil/necesse