1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Dcoker でMinecraft Serverを建てる

Posted at

背景

DockerでMinecraftサーバを構築してみました。

IMAGE ALT TEXT HERE

参考

コマンド

docker run -d -p 25565:25565 -e EULA=TRUE -e FORCE_REDOWNLOAD=true --name mc --restart=always -v /Users/{user}/mc:/data  itzg/minecraft-server

コマンド解説

docker         # docker
run            # docker-hub からpullしてコンテナを生成し、コンテナを開始する
-p 25565:25565 # portをコンテナの25565から実行PCの25565に転送する
-e EULA=TRUE   # 環境変数、利用許諾に同意する場合はTRUE。FALSEだと起動しない
-e FORCE_REDOWNLOAD=true  # 最新バージョンをダウンロードする場合はtrue
--name mc                 # コンテナ名
--restart=always          # 終了してしまった場合に自動的に再起動する
-v /Users/{user}/mc:/data # 実行PCの/Users/{user}/mcをコンテナ内の/dataにマウントする
#※自分の好きなフォルダに変更してください。
itzg/minecraft-server     # docker-hub からpullするイメージ名
1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?