19 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
zardzul 155b623901 add changes to push files to server
Deploy to Production / deploy-to-production (push) Successful in 28s
2026-02-20 18:04:00 +01:00
zardzul f704208500 fix 2
Build and Publish Docker Image / build (push) Failing after 1m27s
Restart Server / restart-server (push) Failing after 4s
2026-02-13 11:40:07 +01:00
zardzul ec45109bf0 make dockerfile prettier
Build and Publish Docker Image / build (push) Failing after 1m28s
Deploy to Production / deploy-to-production (push) Failing after 11s
2026-02-13 11:37:25 +01:00
zardzul 5f3f59b7ae attemped fix
Build and Publish Docker Image / build (push) Successful in 2m14s
Deploy to Production / deploy-to-production (push) Failing after 24s
2026-02-13 11:28:21 +01:00
zardzul 6233dfd73f build stage
Build and Publish Docker Image / build (push) Failing after 1m20s
2026-02-13 11:15:23 +01:00
zardzul 2fd88169dc update modpack step
Build and Publish Docker Image / build (push) Failing after 11s
2026-02-13 11:13:04 +01:00
zardzul 67a4e4568d change git host
Build and Publish Docker Image / build (push) Failing after 30s
2026-02-13 10:53:05 +01:00
zardzul 3784a205a1 change secrets names
Build and Publish Docker Image / build (push) Failing after 21s
2026-02-13 10:49:23 +01:00
zardzul bea7edb0d3 Merge pull request 'fix docker image building' (#3) from feature/docker-image-build into main
Build and Publish Docker Image / build (push) Failing after 1m29s
Reviewed-on: #3
2026-02-13 09:43:51 +00:00
zardzul 6abee7cb51 fix docker image building 2026-02-13 10:43:32 +01:00
zardzul b80687f67d Merge pull request 'revamp build' (#2) from feature/new-config into main
Deploy to Production / deploy-to-production (push) Has been cancelled
Build and Publish Docker Image / build-and-push (push) Failing after 36s
Restart Server / restart-server (push) Failing after 22s
Reviewed-on: #2
2026-02-12 10:18:18 +00:00
zardzul 8c3c1c4096 Merge branch 'main' into feature/new-config 2026-02-12 10:18:08 +00:00
zardzul 81bcc049e0 revamp build 2026-02-12 11:16:24 +01:00
12 changed files with 74 additions and 73 deletions
+11 -24
View File
@@ -11,36 +11,23 @@ jobs:
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
ref: main
path: .
- name: Transfer files - name: Copy files to server
uses: burnett01/rsync-deployments@8.0.4 uses: appleboy/scp-action@v0.1.7
with: with:
switches: -azvr --delete --exclude=".gitignore" --exclude=".git" --exclude=".gitea" --exclude="data" --exclude=".env" host: ${{ secrets.HOST }}
path: . username: ${{ secrets.USERNAME }}
remote_path: /home/${{ secrets.USERNAME }}/minecraft-server-ironveil key: ${{ secrets.KEY }}
remote_host: ${{ secrets.HOST }} source: "configuration,docker-compose.yml,Dockerfile"
remote_user: ${{ secrets.USERNAME }} target: "/home/${{ secrets.USERNAME }}/minecraft-server-ironveil"
remote_key: ${{ secrets.KEY }}
- name: Stop container - name: Deploy and restart container
uses: appleboy/ssh-action@v1.2.5 uses: appleboy/ssh-action@v1.2.5
with: with:
host: ${{ secrets.host }} host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }} username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }} key: ${{ secrets.KEY }}
script: | script: |
cd minecraft-server-ironveil cd minecraft-server-ironveil
docker compose down docker compose pull
docker compose up -d --force-recreate --build
- name: Start container
uses: appleboy/ssh-action@v1.2.5
with:
host: ${{ secrets.host }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: |
cd minecraft-server-ironveil
docker compose up -d
-29
View File
@@ -1,29 +0,0 @@
name: Build and Publish Docker Image
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/ironveil:${{ github.ref_name }}
+2 -1
View File
@@ -1,3 +1,4 @@
.env .env
world world
modpack modpack*
Dockerfile
+11 -8
View File
@@ -1,17 +1,17 @@
# 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
# Copy server configuration files # Copy modpack files
COPY configuration/. .
# Copy all modpack related files
COPY modpack/. . COPY modpack/. .
# Make run.sh executable # Copy configuration files
RUN chmod +x run.sh COPY configuration/. .
# Make run.sh executable (check if it exists first)
RUN chmod +x /server/run.sh
# Expose the default Minecraft port (25565) # Expose the default Minecraft port (25565)
EXPOSE 25565 EXPOSE 25565
@@ -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"
}
]

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

+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=
+36 -2
View File
@@ -1,4 +1,38 @@
[ [
"player1", {
"player2" "name":"zardzul",
"uuid":"9f0f315c-880d-48aa-a786-66ba83dcfb28"
},
{
"name":"CreativeClaws",
"uuid":"173c71f5-8de7-4161-bedf-18350b9a7306"
},
{
"name":"Mango_Rain",
"uuid":"917a3cfd-4470-452b-82da-6af9c35832ff"
},
{
"name":"CerberusGK",
"uuid":"92676552-9c9c-4996-ab8f-d2344ec2068a"
},
{
"name":"c_thijsen",
"uuid":"6123dc36-9374-4111-b021-8c04507d380a"
},
{
"name":"Bongo_catto",
"uuid":"549e6c7b-8cfc-4a59-ad9d-6bff338932a9"
},
{
"name":"Underkun",
"uuid":"69132e65-7ffc-4fa2-b8c2-0610eacf36ad"
},
{
"name":"PenguinLotje",
"uuid":"ac06c59b-9f89-4870-889a-3c183b9e6a11"
},
{
"name":"B4nanaJuice",
"uuid":"340a9ec8-fe7a-4209-a9e4-cd5d5ddbf128"
}
] ]
-1
View File
@@ -1 +0,0 @@
{"operations":{"getModFileInfo":{"1250591,7575878":{"filename":"14ef06dc-1a65-4611-87d6-c61eea6c8b00.json","expiresAt":"2026-02-12T19:47:13.246183510Z"}},"searchModWithGameIdSlugClassId":{"432,over-stars,4471":{"filename":"3fa6caf4-40e9-4b41-91b0-6d44997753b0.json","expiresAt":"2026-02-10T20:47:13.225100126Z"}}}}
@@ -1 +0,0 @@
{"gameId":432,"fileName":"OS Serverpack v5.5.zip","gameVersions":["1.20.1","Forge"],"displayName":"OS Serverpack v5.5","sortableGameVersions":[{"gameVersionPadded":"0000000001.0000000020.0000000001","gameVersion":"1.20.1","gameVersionReleaseDate":"2023-06-12T14:26:38.477Z","gameVersionName":"1.20.1","gameVersionTypeId":75125},{"gameVersionPadded":"0","gameVersion":"","gameVersionReleaseDate":"2022-10-01T00:00:00Z","gameVersionName":"Forge","gameVersionTypeId":68441}],"downloadUrl":"https://edge.forgecdn.net/files/7575/878/OS%20Serverpack%20v5.5.zip","fileDate":"2026-02-04T16:40:45.800Z","exposeAsAlternative":null,"modId":1250591,"modules":[{"name":"mods","fingerprint":491038856},{"name":"scripts","fingerprint":2316932191},{"name":"run.bat","fingerprint":4191847801},{"name":"run.sh","fingerprint":3076618596},{"name":"user_jvm_args.txt","fingerprint":1298710358},{"name":"config","fingerprint":733434366},{"name":"global_packs","fingerprint":738911182},{"name":"kubejs","fingerprint":2552288896},{"name":"libraries","fingerprint":2766827340}],"dependencies":[],"fileFingerprint":2501413001,"releaseType":1,"hashes":[{"value":"718e65a9d3e5c2388ca899589f9b857537c68f3a","algo":1},{"value":"11e309d6a626309c3b5f279bc2f987f8","algo":2}],"parentProjectFileId":7566405,"alternateFileId":0,"id":7575878,"fileLength":792979618,"downloadCount":1,"serverPackFileId":null,"serverPack":false,"available":false}
File diff suppressed because one or more lines are too long
@@ -1,10 +1,12 @@
services: services:
ironveil: ironveil:
image: ironveil:latest build: .
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