Skip to content

Commit 6a994ac

Browse files
authored
Added example for skyfactory5 (#3235)
1 parent f46298c commit 6a994ac

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

examples/multiline-motd/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
environment:
55
EULA: true
66
MOTD: |
7-
line one
7+
A §l§cMinecraft§r server
88
line two
99
# or
1010
# MOTD: "line one\nline two"

examples/skyfactory5/compose.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
services:
2+
mc:
3+
image: itzg/minecraft-server
4+
environment:
5+
EULA: true
6+
# https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/mod-platforms/auto-curseforge/
7+
MODPACK_PLATFORM: AUTO_CURSEFORGE
8+
# CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/skyfactory-5/files/6044634
9+
CF_SLUG: skyfactory-5
10+
CF_FILENAME_MATCHER: 5.0.2
11+
# Loads from .env file
12+
CF_API_KEY: ${CF_API_KEY}
13+
MEMORY: 4G
14+
ports:
15+
- "25565:25565"
16+
volumes:
17+
- mc-data:/data
18+
volumes:
19+
mc-data:

files/cf-exclude-include.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,18 @@
138138
"all-of-fabric-6": {
139139
"forceIncludes": ["revelationary"]
140140
},
141-
"valhelsia-5": {
142-
"excludes": ["modernfix"]
143-
},
144141
"create-arcane-engineering": {
145142
"forceIncludes": ["just-enough-resources-jer"]
143+
},
144+
"skyfactory-5": {
145+
"forceIncludes": [
146+
"colored-torches",
147+
"dye-mob-dye",
148+
"openstairs"
149+
]
150+
},
151+
"valhelsia-5": {
152+
"excludes": ["modernfix"]
146153
}
147154
}
148155
}

0 commit comments

Comments
 (0)