Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 622 Bytes

File metadata and controls

25 lines (15 loc) · 622 Bytes

Docker Setup

This section explains how to run Fenrir Server using Docker

Previous Section: Logging

Building Server solution with Docker

Fenrir Server is a standalone .NET application that supports Docker out of the box.

When using built-in template, you can navigate to the Server folder and build it using provided dockerfile:

cd Server
docker build . -t example:latest 

Note: When running docker, make sure to bind both TCP and UDP ports:

docker run -p 27016:27016/tcp -p 27016:27016/udp example:latest

Next Section: Thread Safety