1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

docker-minecraft-bedrock-server のバージョンを1.20.62に戻す方法

Posted at

2024/03/20現在、Minecraft 統合版 1.20.70/71 の不具合でクライアントのアップデートが停止されていますが、 https://github.com/itzg/docker-minecraft-bedrock-server を使ってホストしているサーバ側がアップデートされてしまい、バージョン不一致でプレイできなくなってしまったため、サーバ側のバージョンを戻す方法を共有しておきます。

ドキュメントの通り、Environment Variablesの VERSION を指定してあげればよいのですが、 1.20.62 だけでは不十分で、 1.20.62.03 まで指定する必要があります。

compose.yml例

version: '3.4'

services:
  bds:
    container_name: bds
    restart: always
    image: itzg/minecraft-bedrock-server
    environment:
      EULA: "TRUE"
      VERSION: "1.20.62.03"
(略)

ちなみに、この1.20.62の最新バージョンの情報が見つけられなかったため、ダウンロードURLを総当たりすることで調べました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?