You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# /data for the world file which we want to be persistent
RUN mkdir /app
RUN mkdir /data
RUN curl "https://s3.amazonaws.com/Minecraft.Download/versions/1.10.2/minecraft_server.1.10.2.jar" -o /app/minecraft_server.jar
# Minecraft requries an accepted eula to run
RUN echo "eula=true" > /app/eula.txt
# Expose the default Minecraft server port
EXPOSE 25565
# add in a custom server.properties file that sets the world to the /data directory and turns off monsters (because I don't want to die while demo-ing :-)