Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.5 KB

README.md

File metadata and controls

52 lines (37 loc) · 1.5 KB

A Docker image to run a dedicated server for Unturned.

Usage

An example sequence could be:

docker build -t fragsoc/unturned https://github.com/FragSoc/unturned-docker.git
docker run -d \
  -p 27015:27015 \
  -p 27016:27016 \
  -p 27017:27017 \
  -p 27015:27015/udp \
  -p 27016:27016/udp \
  -p 27017:27017/udp \
  -v $PWD/unturned_config:/config \
  unturned

Volumes

The image exposes one volume at /config for the server's configuration files.

Ports

The image exposes all the following ports over TCP and UDP:

  • 27015
  • 27016
  • 27017

Build Arguments

  • UID sets the user ID value of the user the server will run under, defaults to 999. You might want to override this for easier directory permission management.

Licensing

The few files in this repo are licensed under the AGPL-3.

However, Unturned is proprietary software licensed by Smartly Dressed Games; no credit is taken for the software in this image.