mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-07-22 00:14:54 +00:00
Compare commits
65
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf032f7d7e | ||
|
|
c5d032eeb7 | ||
|
|
2372cb93d3 | ||
|
|
375fb73586 | ||
|
|
e14311318c | ||
|
|
f3dd4f0123 | ||
|
|
102a3b54ba | ||
|
|
58de72c458 | ||
|
|
738bfd51d5 | ||
|
|
68662fd2ca | ||
|
|
6d80a9d123 | ||
|
|
765ac6072d | ||
|
|
d9962dff26 | ||
|
|
9f19edf137 | ||
|
|
b452514c36 | ||
|
|
4304c75595 | ||
|
|
fd01947aaa | ||
|
|
b890882e54 | ||
|
|
1764d0c0a4 | ||
|
|
5c79befd28 | ||
|
|
2b865723bf | ||
|
|
15840cef6c | ||
|
|
ea80b658dc | ||
|
|
75759ded24 | ||
|
|
0cbb0aa0b5 | ||
|
|
0122b74815 | ||
|
|
1b4f26d2e8 | ||
|
|
5bf6013d6b | ||
|
|
428a7c1875 | ||
|
|
3ba8889194 | ||
|
|
c144da4485 | ||
|
|
2a1f5b7500 | ||
|
|
1725a6ed14 | ||
|
|
8ab55e1ef3 | ||
|
|
32a5ab5138 | ||
|
|
fb97af317e | ||
|
|
fe758aab61 | ||
|
|
4c2868f6c9 | ||
|
|
919aff0080 | ||
|
|
8504cf7caf | ||
|
|
101a7486f2 | ||
|
|
80e576db2d | ||
|
|
3a73e47b83 | ||
|
|
62824051c8 | ||
|
|
c4a2403943 | ||
|
|
2aad0a9407 | ||
|
|
6ead8c3cf0 | ||
|
|
3a18a19583 | ||
|
|
f620b09134 | ||
|
|
2838251c67 | ||
|
|
f7cff34527 | ||
|
|
acdf8c35fa | ||
|
|
c5f2bf1059 | ||
|
|
1f25fae04f | ||
|
|
caffa2fd8d | ||
|
|
8de8eb3104 | ||
|
|
2d3fa3c09e | ||
|
|
f7b3c77f78 | ||
|
|
d968048ef5 | ||
|
|
6d26ca04be | ||
|
|
577eef3631 | ||
|
|
21d7fb476b | ||
|
|
4c3a329e31 | ||
|
|
6c94e49732 | ||
|
|
af77b29509 |
@@ -65,7 +65,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
@@ -93,5 +93,5 @@ The multiarch images are built and published by [a Github action](https://github
|
|||||||
The following git command can be used to provide the bulk of release notes content:
|
The following git command can be used to provide the bulk of release notes content:
|
||||||
|
|
||||||
```shell script
|
```shell script
|
||||||
git log --invert-grep --grep "^ci:" --grep "^misc:" --grep "^docs:" --pretty="* %s" 1.1.0..1.2.0
|
git log --invert-grep --grep "^ci:" --grep "^misc:" --grep "^docs:" --pretty="- %s" 1.1.0..1.2.0
|
||||||
```
|
```
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
FROM eclipse-temurin:16-jdk
|
FROM adoptopenjdk:11-jdk-openj9
|
||||||
|
|
||||||
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
|
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
current_uptime() {
|
current_uptime() {
|
||||||
awk '{print $1}' /proc/uptime | cut -d . -f 1
|
echo $(awk '{print $1}' /proc/uptime | cut -d . -f 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
java_running() {
|
java_running() {
|
||||||
@@ -17,15 +17,15 @@ rcon_client_exists() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
mc_server_listening() {
|
mc_server_listening() {
|
||||||
mc-monitor status --host localhost --port "$SERVER_PORT" --timeout 10s >& /dev/null
|
mc-monitor status --host localhost --port $SERVER_PORT --timeout 10s >& /dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
java_clients_connected() {
|
java_clients_connected() {
|
||||||
local connections
|
local connections
|
||||||
if java_running ; then
|
if java_running ; then
|
||||||
connections=$(mc-monitor status --host localhost --port "$SERVER_PORT" --show-player-count)
|
connections=$(mc-monitor status --host localhost --port $SERVER_PORT --show-player-count)
|
||||||
else
|
else
|
||||||
connections=0
|
connections=0
|
||||||
fi
|
fi
|
||||||
(( connections > 0 ))
|
(( $connections > 0 ))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,14 +103,12 @@ case "${TYPE^^}" in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
FORGE)
|
FORGE)
|
||||||
if versionLessThan 1.17; then
|
|
||||||
log "**********************************************************************"
|
log "**********************************************************************"
|
||||||
log "WARNING: The image tag itzg/minecraft-server:java8 is recommended"
|
log "WARNING: The image tag itzg/minecraft-server:java8 is recommended"
|
||||||
log " since some mods require Java 8"
|
log " since some mods require Java 8"
|
||||||
log " Exception traces reporting ClassCastException: class jdk.internal.loader.ClassLoaders\$AppClassLoader"
|
log " Exception traces reporting ClassCastException: class jdk.internal.loader.ClassLoaders\$AppClassLoader"
|
||||||
log " can be fixed with java8"
|
log " can be fixed with java8"
|
||||||
log "**********************************************************************"
|
log "**********************************************************************"
|
||||||
fi
|
|
||||||
exec ${SCRIPTS:-/}start-deployForge "$@"
|
exec ${SCRIPTS:-/}start-deployForge "$@"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,17 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# shellcheck source=start-utils
|
. ${SCRIPTS:-/}start-utils
|
||||||
. "${SCRIPTS:-/}start-utils"
|
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
: "${REPLACE_ENV_IN_PLACE:=${REPLACE_ENV_VARIABLES:-false}}"
|
: ${REPLACE_ENV_IN_PLACE:=${REPLACE_ENV_VARIABLES:-false}}
|
||||||
: "${REPLACE_ENV_PATHS:=/data}"
|
: ${REPLACE_ENV_PATHS:=/data}
|
||||||
: "${REPLACE_ENV_SUFFIXES:=yml,yaml,txt,cfg,conf,properties,hjson,json,tml,toml}"
|
: ${REPLACE_ENV_SUFFIXES:=yml,yaml,txt,cfg,conf,properties,hjson,json,tml,toml}
|
||||||
: "${REPLACE_ENV_VARIABLE_PREFIX:=${ENV_VARIABLE_PREFIX:-CFG_}}"
|
: ${REPLACE_ENV_VARIABLE_PREFIX:=${ENV_VARIABLE_PREFIX:-CFG_}}
|
||||||
: "${REPLACE_ENV_VARIABLES_EXCLUDES:=}"
|
: ${REPLACE_ENV_VARIABLES_EXCLUDES:=}
|
||||||
: "${REPLACE_ENV_VARIABLES_EXCLUDE_PATHS:=}"
|
: ${REPLACE_ENV_VARIABLES_EXCLUDE_PATHS:=}
|
||||||
: "${PATCH_DEFINITIONS:=}"
|
: ${PATCH_DEFINITIONS:=}
|
||||||
: "${DEBUG:=false}"
|
: ${DEBUG:=false}
|
||||||
|
|
||||||
if isTrue "${REPLACE_ENV_IN_PLACE}"; then
|
if isTrue "${REPLACE_ENV_IN_PLACE}"; then
|
||||||
log "Replacing env variables in ${REPLACE_ENV_PATHS} that match the prefix $REPLACE_ENV_VARIABLE_PREFIX ..."
|
log "Replacing env variables in ${REPLACE_ENV_PATHS} that match the prefix $REPLACE_ENV_VARIABLE_PREFIX ..."
|
||||||
@@ -21,15 +20,15 @@ if isTrue "${REPLACE_ENV_IN_PLACE}"; then
|
|||||||
--replace-env-file-suffixes="${REPLACE_ENV_SUFFIXES}" \
|
--replace-env-file-suffixes="${REPLACE_ENV_SUFFIXES}" \
|
||||||
--replace-env-excludes="${REPLACE_ENV_VARIABLES_EXCLUDES}" \
|
--replace-env-excludes="${REPLACE_ENV_VARIABLES_EXCLUDES}" \
|
||||||
--replace-env-exclude-paths="${REPLACE_ENV_VARIABLES_EXCLUDE_PATHS}" \
|
--replace-env-exclude-paths="${REPLACE_ENV_VARIABLES_EXCLUDE_PATHS}" \
|
||||||
--replace-env-prefix="${REPLACE_ENV_VARIABLE_PREFIX}" \
|
--replace-env-prefix=${REPLACE_ENV_VARIABLE_PREFIX} \
|
||||||
"${REPLACE_ENV_PATHS[@]}"
|
"${REPLACE_ENV_PATHS[@]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${PATCH_DEFINITIONS} ]]; then
|
if [[ ${PATCH_DEFINITIONS} ]]; then
|
||||||
log "Applying patch definitions from ${PATCH_DEFINITIONS}"
|
log "Applying patch definitions from ${PATCH_DEFINITIONS}"
|
||||||
mc-image-helper --debug=${DEBUG} patch \
|
mc-image-helper --debug=${DEBUG} patch \
|
||||||
--patch-env-prefix="${REPLACE_ENV_VARIABLE_PREFIX}" \
|
--patch-env-prefix=${REPLACE_ENV_VARIABLE_PREFIX} \
|
||||||
"${PATCH_DEFINITIONS}"
|
"${PATCH_DEFINITIONS}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec "${SCRIPTS:-/}start-finalExec" "$@"
|
exec ${SCRIPTS:-/}start-finalExec $@
|
||||||
|
|||||||
Reference in New Issue
Block a user