ERROR418/Minecraft_Server
0
1FROM itzg/minecraft-server:latest2 3# Server environment configurations4ENV EULA=TRUE5ENV VERSION=LATEST6# Set initial and maximum memory limits to 8 GB7ENV INIT_MEMORY=8G8ENV MAX_MEMORY=8G9ENV DIFFICULTY=peaceful10ENV GAMEMODE=creative11# Mojang servers and HF servers are having a communication issue apparently12ENV ONLINE_MODE=FALSE13# I should warn about that...14RUN echo "You will get a security warning about online mode being disabled, ignore it unless you get hacked."15 16# Random seed?17ENV MOTD="A server hosted on HF Spaces"18ENV MAX_PLAYERS=4019 20EXPOSE 2556521ENV SERVER_PORT=2556522 23# HF complains because of the lack of an HTTP server, which also seems to break Minecraft...24RUN echo "Ignore the 500 error. If it's not a Minecraft error, it's not a relavent one."