Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ updates:
open-pull-requests-limit: 5
commit-message:
prefix: "fix"
- package-ecosystem: "docker"
directory: "/minestom-lobby"
schedule:
interval: "daily"
open-pull-requests-limit: 5
commit-message:
prefix: "fix"

# Monitor GitHub Actions
- package-ecosystem: "github-actions"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- velocity
- paper
- keycloak
- minestom-lobby
steps:
- name: 📥 Checkout code
uses: actions/checkout@v6
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- velocity
- paper
- keycloak
- minestom-lobby
env:
TAG_TYPE: ${{ startsWith(github.ref, format('refs/tags/{0}@', matrix.container)) && 'release' || 'edge' }}
MATCHES_REF: ${{ github.ref_type != 'tag' || startsWith(github.ref, format('refs/tags/{0}@', matrix.container)) }}
Expand Down
3 changes: 2 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"dev-container-node": "0.1.7",
"velocity": "0.6.0",
"paper": "0.4.0",
"keycloak": "0.0.1"
"keycloak": "0.0.1",
"minestom-lobby": "0.1.0"
}
8 changes: 8 additions & 0 deletions minestom-lobby/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.1.0](https://github.com/groundsgg/containers/compare/minestom-lobby@v0.0.1...minestom-lobby@v0.1.0) (2026-03-08)


### Features

* add minestom-lobby ([#61](https://github.com/groundsgg/containers/issues/61)) ([eb2f977](https://github.com/groundsgg/containers/commit/eb2f977fbb80757a32059b46784b4e9047ddde6c))
38 changes: 38 additions & 0 deletions minestom-lobby/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
FROM eclipse-temurin:25-jre-alpine

ARG VCS_REVISION
ARG BUILD_DATE
ARG IMAGE_VERSION
ARG MINESTOM_LOBBY_VERSION=0.1.1

LABEL org.opencontainers.image.title="minestom-lobby" \
org.opencontainers.image.description="A small Docker image for running a Minestom lobby server." \
org.opencontainers.image.vendor="grounds.gg" \
org.opencontainers.image.authors="grounds.gg <hi@grounds.gg>" \
org.opencontainers.image.source="https://github.com/groundsgg/containers" \
org.opencontainers.image.revision="$VCS_REVISION" \
org.opencontainers.image.created="$BUILD_DATE" \
org.opencontainers.image.version="$IMAGE_VERSION"

WORKDIR /app

RUN --mount=type=secret,id=github_token \
set -eux; \
apk add --no-cache curl netcat-openbsd; \
curl -fsSL \
-H "Authorization: Bearer $(cat /run/secrets/github_token)" \
-o /app/minestom-lobby.jar \
"https://maven.pkg.github.com/groundsgg/minestom-lobby/gg/grounds/minestom-lobby/${MINESTOM_LOBBY_VERSION}/minestom-lobby-${MINESTOM_LOBBY_VERSION}.jar"; \
apk del curl; \
addgroup -S minestom; \
adduser -S -G minestom -h /app minestom; \
chown -R minestom:minestom /app

USER minestom

EXPOSE 25565

HEALTHCHECK --interval=30s --timeout=3s --start-period=40s --retries=3 \
CMD nc -z localhost 25565 || exit 1

ENTRYPOINT ["java", "-jar", "/app/minestom-lobby.jar", "--port", "25565"]
4 changes: 4 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
"keycloak": {
"release-type": "simple",
"package-name": "keycloak"
},
"minestom-lobby": {
"release-type": "simple",
"package-name": "minestom-lobby"
}
}
}
Expand Down