Skip to content

Instantly share code, notes, and snippets.

@Basti3n
Last active February 1, 2024 02:57
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Basti3n/f37600cd07c45fa1b8a2c81df1e7d426 to your computer and use it in GitHub Desktop.
Save Basti3n/f37600cd07c45fa1b8a2c81df1e7d426 to your computer and use it in GitHub Desktop.
Minecraft ALL THE MOD 8 / ATM8 - Docker (Compose) setup

Installation

version: '3.8'
services:
mc:
image: itzg/minecraft-server:java17
volumes:
- data:/data
- ./modpacks:/modpacks:ro
environment:
EULA: "true"
TYPE: FORGE
VERSION: "1.19.2"
FORGE_VERSION: "43.1.52"
GENERIC_PACK: /modpacks/SERVER_FILE_NAME.zip
OVERRIDE_SERVER_PROPERTIES: "TRUE"
MAX_MEMORY: 16G
MAX_PLAYERS: 10
MOTD: "Minecraft ATM 8"
SPAWN_PROTECTION: 0
ENFORCE_WHITELIST: "false"
OPS: USER
DIFFICULTY: normal
ports:
- "25565:25565"
volumes:
data: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment