This Docker image provides Velocity Minecraft Proxy versions. You can easily run a Minecraft Proxy using this image.
docker run -it -d -p 25565:25565 --name endkind-velocity endkind/velocity:latestThis command starts a Velocity server in detached mode (-d), maps port 25565 from the host to the container.
docker volume create endkind-velocity
docker run -it -d -p 25565:25565 --name endkind-velocity -v endkind-velocity:/velocity --restart=always endkind/velocity:latestWhen deploying your server for production or if you require version stability, consider using specific image versions. For example:
docker run -it -d -p 25565:25577 --name endkind-velocity endkind/velocity:3.2.0-SNAPSHOTIn version 3.2.0-SNAPSHOT and earlier, the internal port used by Velocity is 25577. Make sure to map the ports accordingly when using these versions.
docker run -it -d -p 25565:25565 --name endkind-velocity endkind/velocity:3.3.0-SNAPSHOTStarting from version 3.3.0-SNAPSHOT, the internal port has been updated to 25565. Adjust your configurations if you are upgrading from an earlier version.
latestuses always the newest version3.4.0-SNAPSHOT3.3.0-SNAPSHOT3.2.0-SNAPSHOT3.1.2-SNAPSHOT3.1.1-SNAPSHOT3.1.13.1.01.1.91.0.10
You can customize your Velocity server by setting the following environment variables:
MIN_RAM(default: 32M) - Minimum RAM allocated for the server.MAX_RAM(default: 512M) - Maximum RAM allocated for the server.JAVA_FLAGS- Additional Java flags generated with flags.sh.VELOCITY_FLAGS- Custom Velocity server flags.TZ(example: Europe/Berlin) - Set the time zone for the server.
These environment variables allow you to tailor your Velocity server's configuration to your specific requirements. You can adjust memory allocation, specify custom Java flags, and configure various server settings to suit your needs.
Replace <version> with the desired version.
docker build --build-arg VELOCITY_VERSION=<version> -t endkind/velocity:<version> .- GitHub Repository
- Docker Repository
- Docker Compose Example
- Visit our website for more information about our projects and services.
- Connect to our Minecraft server (crossplay) at
mc.endkind.netand start your adventure!
This project is licensed under the terms of the GNU General Public License v3.0 License.
This project includes code derived from the Velocity project.