Skip to content

jonakoudijs/docker-forest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 volume create 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