mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-05-22 11:45:34 +00:00
Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d5fe0a03b | |||
| 236bb565ce | |||
| 7608168823 | |||
| acabb9d93c | |||
| 4e9c00c4d5 | |||
| f3826422cf | |||
| 9b7459ad5c | |||
| c9dc6012f6 | |||
| a5aec72837 | |||
| af38a8fc7a | |||
| 58fa3c897d | |||
| e45621d8e2 | |||
| 6ae431b2f0 | |||
| ebabfeb669 | |||
| 457e9b53c7 | |||
| 21572d3547 | |||
| b176be942d | |||
| 51c5902db0 | |||
| 090e624ebc | |||
| c8dc751b82 | |||
| 7c862df92a | |||
| e49c1c2f01 | |||
| 57390b02ca | |||
| a698248dff | |||
| b8ef6eba3f | |||
| cc5fe0859a | |||
| 8f15aac6fc | |||
| 84ce3b4b47 | |||
| b07c43a32f | |||
| ce1b337f7f | |||
| ee8e1b9322 | |||
| 20bd5c4c36 | |||
| de082d0fb2 | |||
| 3cc5cdbc06 | |||
| b69ec47b18 | |||
| 51fc8e824d | |||
| aff9031284 | |||
| 397d080da2 | |||
| cb5d052829 | |||
| 0908d21bed | |||
| 4d878985d4 | |||
| 72d7d4a65e | |||
| cb0add3b90 | |||
| 71a48ce10f |
@@ -66,7 +66,7 @@ jobs:
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.prep.outputs.tags }}
|
||||
# ensure latest base image is used
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM adoptopenjdk:8-jre-hotspot
|
||||
FROM adoptopenjdk:15-openj9
|
||||
|
||||
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
|
||||
|
||||
|
||||
+13
-1
@@ -98,6 +98,12 @@ case "${TYPE^^}" in
|
||||
;;
|
||||
|
||||
FORGE)
|
||||
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-deployForge "$@"
|
||||
;;
|
||||
|
||||
@@ -109,7 +115,13 @@ case "${TYPE^^}" in
|
||||
exec ${SCRIPTS:-/}start-deployFTBA "$@"
|
||||
;;
|
||||
|
||||
CURSEFORGE|FTB)
|
||||
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 "$@"
|
||||
;;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user