-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose.yml
31 lines (30 loc) · 1.12 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Minecraft Bedrock Server Docker Container - Docker Compose
# Author: James A. Chambers - https://jamesachambers.com/legendary-minecraft-bedrock-container/
# GitHub Repository: https://github.com/TheRemote/Legendary-Bedrock-Container
# To run multiple servers change the volume name under both "volumes" sections and select different ports
version: "3.5"
services:
minecraftbe:
image: 05jchambers/legendary-bedrock-container:latest
restart: "unless-stopped"
ports:
- 19133:19133
- 19133:19133/udp
- 19132:19132
- 19132:19132/udp
volumes:
- minecraftbe:/minecraft
stdin_open: true # docker run -i
tty: true # docker run -t
entrypoint: [ "/bin/bash", "/scripts/start.sh" ]
environment:
PortIPV4: "19132"
PortIPV6: "19133"
TZ: "America/Denver" # Timezone
BackupCount: 10 # Number of rolling backups to keep
#Version: 1.18.33.02 # Set custom version
#NoPermCheck: "Y" # Optional flag to skip permissions check
#QuietCurl: "Y" # Optional flag to reduce curl log output by suppressing progress meter
volumes:
minecraftbe:
driver: local