FOR DEVELOPMENT PURPOSES ONLY
Docker-based virtualized development and testing tools for WorldQL.
~/# git clone https://github.com/WorldQL/WorldQLDocker/
~/# cd WorldQLDocker/
You will need the following:
- Docker
- Kubernetes (Optional)
It is HIGHLY recommended you spend time understanding what these tools are and what they do before trying to use them or trying to work with them.
All use cases described below assume you have cloned this repository and are in the root directory for the repository.
Links to dedicated guides (All shell code blocks will state what directory you should be in on each command line):
You likely didn't generate the environment for your compose setup, or didn't set the secrets for your Kubernetes stack properly. Please ensure that you generated database credentials using the method applicable to your stack.
I'm getting "No such file or directory ." errors on the control plane and/or the client server. What went wrong?
You cloned the repository incorrectly. More specifically, your script files for the Docker have carriage returns (CR), which breaks every script. Please correct the line endings by either following the applicable guide for turning off auto conversion for your OS, or going in and manually setting the files to have line feeds as their line endings.
In some cases, you will have another process listening on port 25565
. The simplest way to manage this is to chanbge the port binding for the client server from 25565
to an open port, like 25570
. the result in this example would be "25570:25565"
, bearing in mind that 25570
could be ANY available port.