Sign inSign up

pixil/necesse

By pixil

•Updated over 2 years ago

Create a Necesse server

Image
0

4.7K

pixil/necesse repository overview

⁠Necesse

⁠What is Necesse?

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⁠.

⁠Usage

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

⁠Saves

By default, a new world named myworld.zip is generated the first time the server is started.

⁠Use existing world

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

Tag summary

Content type

Image

Digest

sha256:2dbd2b4c9…

Size

101.9 MB

Last updated

over 2 years ago

docker pull pixil/necesse