Created
December 21, 2022 05:40
-
-
Save lox/9d180499cda8e4364fd4b989ba482daa to your computer and use it in GitHub Desktop.
Donald Family Minecraft
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.5" | |
services: | |
minecraft: | |
image: 05jchambers/legendary-minecraft-geyser-floodgate:latest | |
restart: "unless-stopped" | |
stdin_open: true | |
tty: true | |
volumes: | |
- ./minecraft:/minecraft | |
environment: | |
SERVER_NAME: "Donald World" | |
EULA: "true" | |
ONLINE_MODE: "false" | |
GAMEMODE: survival | |
DIFFICULTY: normal | |
ALLOW_CHEATS: "true" | |
VERSION: "LATEST" | |
security_opt: | |
- seccomp:unconfined | |
network_mode: "service:tailscale" | |
tailscale: | |
image: tailscale/tailscale | |
hostname: donald-minecraft | |
environment: | |
- TS_AUTH_KEY | |
- "TS_EXTRA_ARGS=--accept-routes=true" | |
restart: unless-stopped | |
volumes: | |
- /dev/net/tun:/dev/net/tun | |
privileged: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment