-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch FTBA to use https://api.feed-the-beast.com/v1 (#3174)
- Loading branch information
Showing
2 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
15 changes: 7 additions & 8 deletions
15
examples/docker-compose-ftba.yml → examples/ftba/compose.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
services: | ||
mc: | ||
# FTBA support is only available in non-Alpine images | ||
image: itzg/minecraft-server:${IMAGE_TAG:-java8-multiarch} | ||
image: itzg/minecraft-server | ||
ports: | ||
# expose the Minecraft server port outside of container | ||
- 25565:25565 | ||
- "25565:25565" | ||
environment: | ||
# REQUIRED for all types | ||
EULA: "TRUE" | ||
# Set server type (vs the default of vanilla) | ||
TYPE: FTBA | ||
# Use Pack ID from https://ftb.neptunepowered.org/pack/ftb-presents-direwolf20-1-12/ | ||
FTB_MODPACK_ID: "31" | ||
FTB_MODPACK_VERSION_ID: "" | ||
# Use Pack ID from https://www.feed-the-beast.com/modpacks/119-ftb-presents-direwolf20-120?tab=about | ||
FTB_MODPACK_ID: "119" | ||
# FTB_MODPACK_VERSION_ID: "" | ||
volumes: | ||
# use a named, managed volume for data volume | ||
- ftba:/data | ||
- data:/data | ||
|
||
volumes: | ||
# declared the named volume, but use default/local storage engine | ||
ftba: {} | ||
data: {} |
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