6 Commits

Author SHA1 Message Date
zardzul cf3783f2c6 Allow flight
Deploy to Production / deploy-to-production (push) Successful in 46s
Restart Server / restart-server (push) Successful in 17s
2026-02-26 11:21:11 +01:00
zardzul 8c462db8b4 added op, dynmap configuration
Restart Server / restart-server (push) Successful in 54s
2026-02-24 19:11:32 +01:00
zardzul d734294058 Update docker-compose.yml
Deploy to Production / deploy-to-production (push) Successful in 38s
2026-02-24 16:49:30 +00:00
zardzul 6179b33497 Update Dockerfile 2026-02-24 16:49:00 +00:00
zardzul ebbec2d238 add force rebuild
Deploy to Production / deploy-to-production (push) Successful in 23s
Restart Server / restart-server (push) Successful in 19s
2026-02-20 18:13:10 +01:00
zardzul 4f3fe4ed5a switch ports, use java 21
Deploy to Production / deploy-to-production (push) Successful in 24s
2026-02-20 18:10:44 +01:00
6 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -30,4 +30,4 @@ jobs:
script: | script: |
cd minecraft-server-ironveil cd minecraft-server-ironveil
docker compose pull docker compose pull
docker compose up -d --force-recreate docker compose up -d --force-recreate --build
+2 -1
View File
@@ -1,3 +1,4 @@
.env .env
world world
modpack modpack*
Dockerfile
+5 -2
View File
@@ -1,5 +1,5 @@
# Use an official OpenJDK 17 image # Use an official OpenJDK 21 image
FROM eclipse-temurin:17-jdk FROM eclipse-temurin:21-jdk
# Set working directory # Set working directory
WORKDIR /server WORKDIR /server
@@ -19,5 +19,8 @@ EXPOSE 25565
# Expose the default Minecraft RCON port (25575) # Expose the default Minecraft RCON port (25575)
EXPOSE 25575 EXPOSE 25575
# Expose dynmap port
EXPOSE 8123
# Start the server using run.sh # Start the server using run.sh
ENTRYPOINT ["/server/run.sh"] ENTRYPOINT ["/server/run.sh"]
+6
View File
@@ -0,0 +1,6 @@
[
{
"name":"zardzul",
"uuid":"9f0f315c-880d-48aa-a786-66ba83dcfb28"
}
]
+2 -2
View File
@@ -1,5 +1,5 @@
#Minecraft server properties #Minecraft server properties
allow-flight=false allow-flight=true
allow-nether=true allow-nether=true
broadcast-console-to-ops=true broadcast-console-to-ops=true
broadcast-rcon-to-ops=true broadcast-rcon-to-ops=true
@@ -37,7 +37,7 @@ prevent-proxy-connections=false
pvp=true pvp=true
query.port=25565 query.port=25565
rate-limit=0 rate-limit=0
rcon.password= rcon.password=vhVesayNmDs3hDy8R9Gdgo3s
rcon.port=25575 rcon.port=25575
require-resource-pack=false require-resource-pack=false
resource-pack= resource-pack=
+4 -2
View File
@@ -4,7 +4,9 @@ services:
container_name: ironveil container_name: ironveil
volumes: volumes:
- ./world:/server/world - ./world:/server/world
- ./dynmap:/server/dynmap
ports: ports:
- "25565:25565" - "5101:25565"
- "25575:25575" - "5201:25575"
- "5301:8123" # dynmap
restart: unless-stopped restart: unless-stopped