mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
25 lines
728 B
YAML
25 lines
728 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mc:
|
|
image: itzg/minecraft-server
|
|
tty: true
|
|
stdin_open: true
|
|
ports:
|
|
- "25565:25565"
|
|
environment:
|
|
EULA: "TRUE"
|
|
TYPE: MODRINTH
|
|
MODRINTH_PROJECT: https://modrinth.com/modpack/cobblemon-fabric/version/1.3.2
|
|
# or for auto-upgrading to latest
|
|
# MODRINTH_PROJECT: https://modrinth.com/modpack/cobblemon-fabric
|
|
# or just cobblemon-fabric or 5FFgwNNP
|
|
# and could replace version URL with
|
|
# MODRINTH_VERSION: nvrqJg44
|
|
# MODRINTH_VERSION: 1.3.2
|
|
# MODRINTH_VERSION: "Cobblemon [Fabric] 1.3.2"
|
|
SETUP_ONLY: "true"
|
|
volumes:
|
|
# attach the relative directory 'data' to the container's /data path
|
|
- ./data:/data
|