Check https://github.com/azerothcore/azerothcore-wotlk/tree/master/docker for all details.
AzerothCore Dockerized Authserver
This provides a way to launch a container with the AzerothCore authserver running inside it.
Requirements
-
You need to have Docker installed in your system. You can install it on any operating system.
-
You need to first build the AzerothCore Build Image.
-
You have to copy the file
docker/authserver/authserver.conf.distand rename the copied file todocker/authserver/authserver.conf. Then open it and change the values where needed (you may need to change the DB port).
Building the container image
To build the container image you have to be in the main folder of your local AzerothCore sources directory.
docker build -t azerothcore/authserver -f docker/authserver/Dockerfile docker/authserver/
For more information about the docker build command, check the docker build doc.
Run the container
docker run --name azt-authserver --network host -it azerothcore/authserver
For more information about the docker run command, check the docker run doc.