Minecraft_Server / Dockerfile
MemeTech's picture
Update Dockerfile
34cd292 verified
raw
history blame
366 Bytes
FROM itzg/minecraft-server:latest
# Server environment configurations
ENV EULA=TRUE
ENV VERSION=LATEST
# Set initial and maximum memory limits to 8 GB
ENV INIT_MEMORY=8G
ENV MAX_MEMORY=8G
ENV DIFFICULTY=peaceful
ENV GAMEMODE=creative
ENV ONLINE_MODE=FALSE
# Random seed?
ENV MOTD="A server hosted on HF Spaces"
ENV MAX_PLAYERS=40
EXPOSE 25565
ENV SERVER_PORT=25565