mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-05-08 13:05:26 +00:00
Compare commits
77 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c661fe7318 | |||
| bae1feb750 | |||
| edbcf80a70 | |||
| fb23e12680 | |||
| e30a2e6448 | |||
| 03d7babd68 | |||
| 332b929a6d | |||
| c138cabc65 | |||
| 41631e35e8 | |||
| 6f95fa6175 | |||
| 6f16da8309 | |||
| 8cee8d5618 | |||
| 8b76b5776a | |||
| e3af06d2e4 | |||
| 0ac583514c | |||
| bf3f15f5fb | |||
| 4aec2322b5 | |||
| 51b2eb6851 | |||
| 846050f41a | |||
| 485ec6a141 | |||
| 0096e41882 | |||
| d45610723a | |||
| 072704b54d | |||
| 0f08e88c5b | |||
| 89604c8d13 | |||
| 58842d444b | |||
| 457d09e14d | |||
| 7210e81f47 | |||
| ba86534e6e | |||
| 44bafbff09 | |||
| 75c51bf0c7 | |||
| cf651f2279 | |||
| 6d0d7fe19c | |||
| bb58d7a4c9 | |||
| 6efaac2861 | |||
| 806342d74b | |||
| 926e302595 | |||
| 10e85140ad | |||
| fc2ed9e612 | |||
| edfe58079a | |||
| d423cc3b8d | |||
| 1537e48e29 | |||
| 62473771dc | |||
| c4528e8f79 | |||
| 0f797487ab | |||
| 9511e3cc80 | |||
| 3aa4dd6c85 | |||
| 27571999b2 | |||
| bbd7d9e39a | |||
| ef6f308229 | |||
| 49d89d3e73 | |||
| 74203b23f4 | |||
| 4fb791b490 | |||
| ced25ad50a | |||
| 48efc224ba | |||
| 467c1d9954 | |||
| 9ced230f55 | |||
| f3a8276362 | |||
| b91d63716e | |||
| 46cccfd531 | |||
| 9fe1cb4a0d | |||
| 076038b470 | |||
| aa416729ea | |||
| 812c6365ec | |||
| 42a5131b19 | |||
| 624f6a210f | |||
| 1c63cd18b7 | |||
| 6266a7e3cc | |||
| 871ecd4d9d | |||
| c572c95161 | |||
| f7b58fbbb1 | |||
| eccfa444a9 | |||
| e831d25706 | |||
| 12e931332b | |||
| ceee9eddc9 | |||
| 60ba668743 | |||
| fd1b15e01f |
@@ -66,7 +66,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v2.7.0
|
uses: docker/build-push-action@v2.7.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
platforms: linux/amd64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
# ensure latest base image is used
|
# ensure latest base image is used
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
FROM adoptopenjdk:16-jre
|
FROM adoptopenjdk:8-jre-openj9
|
||||||
|
|
||||||
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
|
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
|
||||||
|
|
||||||
|
|||||||
@@ -103,14 +103,6 @@ case "${TYPE^^}" in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
FORGE)
|
FORGE)
|
||||||
if versionLessThan 1.17; then
|
|
||||||
log "**********************************************************************"
|
|
||||||
log "WARNING: The image tag itzg/minecraft-server:java8 is recommended"
|
|
||||||
log " since some mods require Java 8"
|
|
||||||
log " Exception traces reporting ClassCastException: class jdk.internal.loader.ClassLoaders\$AppClassLoader"
|
|
||||||
log " can be fixed with java8"
|
|
||||||
log "**********************************************************************"
|
|
||||||
fi
|
|
||||||
exec ${SCRIPTS:-/}start-deployForge "$@"
|
exec ${SCRIPTS:-/}start-deployForge "$@"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@@ -123,12 +115,6 @@ case "${TYPE^^}" in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
FTB|CURSEFORGE)
|
FTB|CURSEFORGE)
|
||||||
log "**********************************************************************"
|
|
||||||
log "WARNING: The image tag itzg/minecraft-server:java8 is recommended"
|
|
||||||
log " since some mods require Java 8"
|
|
||||||
log " Exception traces reporting ClassCastException: class jdk.internal.loader.ClassLoaders\$AppClassLoader"
|
|
||||||
log " can be fixed with java8"
|
|
||||||
log "**********************************************************************"
|
|
||||||
exec ${SCRIPTS:-/}start-deployCF "$@"
|
exec ${SCRIPTS:-/}start-deployCF "$@"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user