Sign inSign up

jonakoudijs/forest

By jonakoudijs

Updated over 1 year ago

The Forest dedicated server Docker image

Image
2

1.1K

jonakoudijs/forest repository overview

Build Status CodeFactor Docker Pulls Image Size MIT License

The Forest Server Docker Image

Dedicated server of The Forest on Ubuntu. The server software of The Forest is only available on Windows and therefor running with Wine in this image. The image is automatically rebuild every week.

Tags

Usage

Run with default configuration
docker run --name forest -d \
  -p 27015:27015/tcp -p 27015:27015/udp \
  -p 27016:27016/tcp -p 27016:27016/udp \
  -p 8766:8766/tcp   -p 8766:8766/udp \
  jonakoudijs/forest:latest
Run and persist server saves
docker create volume forest-saves
docker run --name forest -d \
  -v forest-saves:/data/saves \
  -p 27015:27015/tcp -p 27015:27015/udp \
  -p 27016:27016/tcp -p 27016:27016/udp \
  -p 8766:8766/tcp   -p 8766:8766/udp \
  jonakoudijs/forest:latest
Run interactively for debugging
docker run -it --entrypoint="" \
  jonakoudijs/forest:latest /bin/bash

Configuration

The configuration of the server can be done in the server.cfg file. The settings can be overwritten by copying a custom version to /data/config/server.cfg or changing the config file and rebuilding the image.

Sources

License

MIT license

Tag summary

Content type

Image

Digest

sha256:8df80e515

Size

1.8 GB

Last updated

over 1 year ago

docker pull jonakoudijs/forest