MC Bedrock Server with Docker

설치 방법

Deploy Minecraft by Docker
언젠가 현실 친구 채팅방에서 ‘우리 다같이 한 것이 뭐가 있었냐?’ 하면서 이야기가 있었는데, 갑자기 마인크래프트 이야기가 나오게 되어 구축하게 되었다....는 마인크래프트 서버 구축이 처음은 아니었는데, 지금으로부터 10개월 전에 EC2라는 모드를 넣고 구축한 적이
version: '2'

services:
  minecraft:
    image: itzg/minecraft-server:adopt11
    container_name: "minecraft"
    ports:
      - ...
    environment:
      - EULA=TRUE
      - ENABLE_RCON=TRUE
      - RCON_PASSWORD=...
      - MEMORY=7G
      - TYPE=PAPER
      - VERSION=1.15.2
      - SERVER_PORT=...
    restart: always
    
  rcon:
    image: itzg/rcon
    container_name: "rcon"
    links:
      - minecraft
    networks:
      - nodap-mc-network

networks:
  nodap-mc-network:
    external: true
Docker로 마인크래프트 서버 관리하기 - 고급편
⚠️ 들어가며 서버를 여는 방법은 초급편글에 있습니다. 초급편과는 달리, 약간의 컴퓨터 지식이 필요할 수 있습니다. 하지만 끈기와 의지가 있으신 분들이라면 충분히 따라할 수 있으실겁니다. 주제가 광범위하기 때문에 Q&A 형식으로 포스팅했습니다. ⛔️ docker: Error response from daemon: Conflict 오류가 떠요 이미 동일한 내용의 docker container가 올라가서 그렇습니다. 아래 명령어로 마크 서버 컨테이너를 삭제하고 다시 시도해보시면 될겁니다. docker stop mc && docker r…

version: "3.4"
 
services:
  mc:
    image: itzg/minecraft-bedrock-server
    ports:
      - 19132:19132
    environment:
      - EULA= true
      - MAX_PLAYERS=5
    tty: true
    stdin_open: true
    restart: unless-stopped
    volumes:
      - mc:/data
      
  volumes:
  mc: {}
  
  
  version: '3.4'

services:
  bds:
    image: itzg/minecraft-bedrock-server
    environment:
      EULA: "TRUE"
      GAMEMODE: survival
      DIFFICULTY: easy
      MAX_PLAYER=8
    ports:
      - 19132:19132/udp
    volumes:
      - bds:/data
    stdin_open: true
    tty: true

volumes:
  bds: {}

10초만에 마인크래프트 서버 만들기
카카오 보이스톡으로 음성 채팅하며 원격으로 친구들과 마인크래프트 즐기는 모습
docker-minecraft-bedrock-server/docker-compose.yml at master · itzg/docker-minecraft-bedrock-server
Containerized Minecraft Bedrock Dedicated Server with selectable version - docker-minecraft-bedrock-server/docker-compose.yml at master · itzg/docker-minecraft-bedrock-server


Update 방법

stack update 하고 나서 container 재실행한다.


맵수정방법

마인크래프트 서버 월드 바꾸는 법
안녕하세요! 오늘은 마인크래프트 서버 월드를 바꾸는 법을 알려드리도록 하겠습니다. 마인크래프트 서버…


참고자료

Minecraft Maps for Bedrock Edition | Page 5 | Planet Minecraft Community
Custom Minecraft maps are shared by the community to inspire, download and experience new worlds. Upload your Minecraft builds!
the story of minecraft part 2 Minecraft Map
I'm sorry but I'm not going to create a new map of this saga if you want to know about my new map name cursed posion look at , View map now!
DEADKRON Horror Multiplayer Minecraft Map
DEADKRON Bedrock Edition Become a survivor or a killer. Find all the defenders, and then a way out or vice versa, take the side of evil and kill all…
Minecraft Battle Mode: Crucible Large Download - Java/Bedrock Minecraft Map
This mysterious temple is set within the deepest jungle. Watch out for enemies lurking in the treetops! Temple is one of the best known Minecraft…
Minecraft Battle Mode: Crucible Small Download - Java/Bedrock Minecraft Map
This mysterious temple is set within the deepest jungle. Watch out for enemies lurking in the treetops! Temple is one of the best known Minecraft…
Castle of Orange medieval 500x500 spawn Minecraft Map
Description Castle of Orange 500x500 spawn for your minecraft server. Minecraft versions 1.8 1.19 Includes Spawn Pouint Places for 5x NPC Places for 3x…
Misthorn Island Minecraft Map
this is a map i made for a serevr i help run, and i figured i'd publish it here if anyone wants to download and use, the server is , enjoy the views!

Sea Castle [Download] Minecraft Map
Sea Castle The blue pearl, a real architectural marvel, standing on a once deserted island, will fascinate people from all over the world and become a…

R.M.S. Cardiff (Java&Bedrock) Minecraft Map
RMS Cardiff was a steamship put into service in 1914 with an impressive maritime history. The British vessel, originally designed as an ocean liner,…

구조물 블럭을 이용하여 맵을 쉽게 저장 할 수 있음...

aternos 에서 맵 업로드 후 구조물 블럭으로 마끼따서 옮겨오면 될듯