2022-01-20 23:09:34 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
mc:
|
|
|
|
restart: "no"
|
|
|
|
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
|
|
|
|
environment:
|
|
|
|
EULA: "TRUE"
|
|
|
|
SETUP_ONLY: "TRUE"
|
|
|
|
VERSION: ${MINECRAFT_VERSION:-LATEST}
|
2022-01-28 00:42:33 +00:00
|
|
|
MODS_FORGEAPI_FILE: /config/forgeapi_mods.json
|
2022-01-20 23:09:34 +00:00
|
|
|
# Key is defined in .github/workflows/pr.yml and ci.yml
|
|
|
|
# This should be coming from github secrets.
|
|
|
|
MODS_FORGEAPI_KEY: ${MODS_FORGEAPI_KEY}
|
|
|
|
REMOVE_OLD_FORGEAPI_MODS: "TRUE"
|
2022-01-28 00:42:33 +00:00
|
|
|
MODS_FORGEAPI_DOWNLOAD_DEPENDENCIES: "FALSE"
|
2022-01-20 23:09:34 +00:00
|
|
|
volumes:
|
2022-01-28 00:42:33 +00:00
|
|
|
- ./forgeapi_mods.json:/config/forgeapi_mods.json:ro
|