Skip to content

Commit 1f6288e

Browse files
Add example of Craftoria modpack (#3198)
1 parent 787a31a commit 1f6288e

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

examples/craftoria/docker-compose.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
services:
2+
mc:
3+
image: itzg/minecraft-server
4+
tty: true
5+
stdin_open: true
6+
ports:
7+
- "25565:25565"
8+
environment:
9+
EULA: true
10+
ALLOW_FLIGHT: true
11+
MOD_PLATFORM: AUTO_CURSEFORGE
12+
# allocate from https://console.curseforge.com/ and set in .env file
13+
CF_API_KEY: ${CF_API_KEY}
14+
CF_SLUG: craftoria
15+
MEMORY: 8G
16+
CF_EXCLUDE_MODS: |
17+
737481
18+
363363
19+
394468
20+
986380
21+
844662
22+
568563
23+
915902
24+
690971
25+
455508
26+
1089803
27+
511319
28+
volumes:
29+
# Use managed volume by default, but can change to a relative path like
30+
# ./data:/data
31+
# to use a host directory
32+
- mc-data:/data
33+
volumes:
34+
mc-data:

0 commit comments

Comments
 (0)