Last active
October 21, 2021 06:47
-
-
Save caseyfw/50f66808d02e7bf4bcfb87d01866f379 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
minecraft: | |
image: itzg/minecraft-server | |
ports: | |
- 25565:25565 | |
restart: unless-stopped | |
environment: | |
EULA: "TRUE" | |
OPS: CaseyFulton | |
WHITELIST: CaseyFulton | |
SERVER_NAME: Flightcraft | |
MOTD: "Welcome to \\u00a74\\u2708 Flightcraft" | |
ICON: "https://i.imgur.com/LIXkbVc.png" | |
FORCE_GAMEMODE: "TRUE" | |
SEED: "3513857880445" | |
ALLOW_FLIGHT: "FALSE" | |
volumes: | |
- ${HOME}/minecraft-server:/data | |
bedrock-proxy: | |
image: infinytum/geyser-mc | |
ports: | |
- "19132:19132/udp" | |
restart: unless-stopped | |
environment: | |
REMOTE_ADDRESS: minecraft |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment