initial creation of new config type

This commit is contained in:
zardzul
2026-02-10 21:12:14 +01:00
parent a0b21c3292
commit e85fff565e
22 changed files with 167 additions and 73 deletions
+23
View File
@@ -0,0 +1,23 @@
# Use an official OpenJDK 17 image
FROM eclipse-temurin:17-jdk
# Set working directory
WORKDIR /server
# Copy server configuration files
COPY configuration/. .
# Copy all modpack related files
COPY modpack/. .
# Make run.sh executable
RUN chmod +x run.sh
# Expose the default Minecraft port (25565)
EXPOSE 25565
# Expose the default Minecraft RCON port (25575)
EXPOSE 25575
# Start the server using run.sh
ENTRYPOINT ["/server/run.sh"]