-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
enhancementreason/upstreamCaused by an upstream vendor (Mojang, Forge, Bukkit, etc) issueCaused by an upstream vendor (Mojang, Forge, Bukkit, etc) issue
Description
Describe the problem
Hi, I'm not sure if this is a bug or if I'm not understanding how this should work, but the experimental version of paper keeps getting downloaded. The latest stable version at https://papermc.io/downloads/paper is 1.21.8 but my docker logs keep showing it downloading 1.21.9-pre2-7
[init] Running as uid=1000 gid=1000 with /data as 'drwxrwxrwx 14 1000 1000 32 Sep 22 13:10 /data'
[init] Image info: buildtime=2025-09-21T14:11:02.982Z,version=java21,revision=d1da61d0deef83a1e04ddc7e0cd15e8fd01d0fbf
[init] Resolving type given PAPER
[mc-image-helper] 13:10:49.019 INFO : Downloaded /data/paper-1.21.9-pre2-7.jar
I usually don't have PAPER_CHANNEL set, but I don't see any change with PAPER_CHANNEL=experimental or PAPER_CHANNEL=default.
I'm not sure if this is the issue, but it seems like they're using channel names of "ALPHA" and "STABLE"
curl -s https://fill.papermc.io/v3/projects/paper/versions/1.21.9-pre2/builds | jq -r '.. | .channel? // empty' | sort -u
ALPHA
while
curl -s https://fill.papermc.io/v3/projects/paper/versions/1.21.8/builds | jq -r '.. | .channel? // empty' | sort -u
STABLE
Container definition
services:
minecraft:
container_name: minecraft
image: itzg/minecraft-server
ports:
- 25565:25565
- 19132:19132/udp
environment:
- EULA=TRUE
- INIT_MEMORY=1G
- MAX_MEMORY=2G
- TYPE=PAPER
- PAPER_CHANNEL=default
- TZ=Africa/Johannesburg
- ENABLE_ROLLING_LOGS=true
- >
PLUGINS=https://download.geysermc.org/v2/projects/geyser/versions/latest/builds/latest/downloads/spigot,
https://download.geysermc.org/v2/projects/floodgate/versions/latest/builds/latest/downloads/spigot,
https://github.com/ViaVersion/ViaVersion/releases/download/5.4.2/ViaVersion-5.4.2.jar,
https://github.com/ViaVersion/ViaBackwards/releases/download/5.4.2/ViaBackwards-5.4.2.jar
tty: true
stdin_open: true
volumes:
- /mnt/media/minecraft/data:/data
restart: always
Container logs
[init] Running as uid=1000 gid=1000 with /data as 'drwxrwxrwx 14 1000 1000 32 Sep 22 13:20 /data'
[init] Image info: buildtime=2025-09-21T14:11:02.982Z,version=java21,revision=d1da61d0deef83a1e04ddc7e0cd15e8fd01d0fbf
[init] Resolving type given PAPER
[mc-image-helper] 13:20:30.176 INFO : Downloaded /data/paper-1.21.9-pre2-7.jar
[mc-image-helper] 13:20:33.047 INFO : The file /data/plugins/Geyser-Spigot.jar is already up to date
[mc-image-helper] 13:20:33.047 INFO : The file /data/plugins/floodgate-spigot.jar is already up to date
[mc-image-helper] 13:20:33.167 INFO : The file /data/plugins/ViaVersion-5.4.2.jar is already up to date
[mc-image-helper] 13:20:33.337 INFO : The file /data/plugins/ViaBackwards-5.4.2.jar is already up to date
[init] Copying any plugins from /plugins to /data/plugins
[init] Copying any configs from /config to /data/config
abesnier, wenerme and drag0n620dev
Metadata
Metadata
Assignees
Labels
enhancementreason/upstreamCaused by an upstream vendor (Mojang, Forge, Bukkit, etc) issueCaused by an upstream vendor (Mojang, Forge, Bukkit, etc) issue
Projects
Status
Done