mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
18 lines
445 B
YAML
18 lines
445 B
YAML
version: "3"
|
|
|
|
services:
|
|
mc:
|
|
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
|
|
environment:
|
|
EULA: "true"
|
|
SETUP_ONLY: "TRUE"
|
|
MOD_PLATFORM: AUTO_CURSEFORGE
|
|
CF_API_KEY: ${CF_API_KEY}
|
|
CF_SLUG: the-pixelmon-modpack
|
|
CF_FILENAME_MATCHER: "9.1.2"
|
|
# Use the image bundled one to ensure latest is being tested
|
|
CF_EXCLUDE_INCLUDE_FILE: /image/cf-exclude-include.json
|
|
volumes:
|
|
- ./data:/data
|
|
|