Created
November 16, 2024 15:46
-
-
Save chiefy/d2c227b8af4ca0c206e6640ae2d365ca to your computer and use it in GitHub Desktop.
minecraft
This file contains 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.7" | |
services: | |
mc: | |
image: itzg/minecraft-server:${IMAGE_TAG:-java8} | |
container_name: minecraft | |
restart: unless-stopped | |
environment: | |
TYPE: FORGE | |
VERSION: "1.16.5" | |
MEMORY: "8G" | |
FORGE_VERSION: "36.2.26" | |
CF_SERVER_MOD: "/modpacks/Cuboid.zip" | |
EULA: "TRUE" | |
volumes: | |
- /root/mc/FeedTheBeast:/data | |
- /mnt/Music/MC:/modpacks | |
ports: | |
- "25565:25565" | |
volumes: | |
data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment