Fix up-to-date handling of MODS/PLUGINS/MODS_FILE (#2234)

This commit is contained in:
Geoff Bourne 2023-06-18 09:44:31 -05:00 committed by GitHub
parent 87e2f2b177
commit a566f99018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 3 deletions

View File

@ -46,7 +46,7 @@ RUN easy-add --var os=${TARGETOS} --var arch=${TARGETARCH}${TARGETVARIANT} \
--var version=0.1.1 --var app=maven-metadata-release --file {{.app}} \
--from https://github.com/itzg/{{.app}}/releases/download/{{.version}}/{{.app}}_{{.version}}_{{.os}}_{{.arch}}.tar.gz
ARG MC_HELPER_VERSION=1.32.0
ARG MC_HELPER_VERSION=1.32.1
ARG MC_HELPER_BASE_URL=https://github.com/itzg/mc-image-helper/releases/download/${MC_HELPER_VERSION}
# used for cache busting local copy of mc-image-helper
ARG MC_HELPER_REV=1

View File

@ -2,12 +2,12 @@ version: "3"
services:
mc:
image: ${IMAGE:-itzg/minecraft-server}
image: itzg/minecraft-server
environment:
EULA: "true"
TYPE: FABRIC
ports:
- 25565:25565
- "25565:25565"
volumes:
- fabric:/data

View File

@ -0,0 +1,15 @@
version: "3"
services:
mc:
image: itzg/minecraft-server
environment:
EULA: "true"
TYPE: QUILT
ports:
- "25565:25565"
volumes:
- data:/data
volumes:
data: {}