This Docker image provides Folia Minecraft server versions. You can easily run a Minecraft server using this image.
docker run -it -d -p 25565:25565 --name endkind-folia -e MINECRAFT_EULA=true endkind/folia:latestThis command starts a Folia server in detached mode (-d), maps port 25565 from the host to the container, and accepts the Minecraft EULA.
docker volume create endkind-folia
docker run -it -d -p 25565:25565 --name endkind-folia -v endkind-folia:/folia -e MAX_RAM=3G -e MINECRAFT_EULA=true --restart=always endkind/folia: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:25565 -e MINECRAFT_EULA=true endkind/folia:1.19.4By specifying a version like 1.19.4, you ensure that your server runs a known and tested version of Folia.
latestuses always the newest version1.21.4,1.21.5,1.21.6,1.21.8,1.21.111.20.1,1.20.2,1.20.4,1.20.61.19.4
You can customize your Folia server by setting the following environment variables:
MIN_RAM(default: 512M) - Minimum RAM allocated for the server.MAX_RAM(default: 3G) - Maximum RAM allocated for the server.MINECRAFT_EULA(default: false) - Set totrueto accept the Minecraft EULA.JAVA_FLAGS- Additional Java flags generated with flags.sh.FOLIA_FLAGS(default: --nojline) - Custom Folia server flags.TZ(example: Europe/Berlin) - Set the time zone for the server.
These environment variables allow you to tailor your Folia 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 FOLIA_VERSION=<version> -t endkind/folia:<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 Folia project.