Skip to content

Commit b060558

Browse files
authored
docs: added ATM9 example (#2571)
1 parent 2cfd685 commit b060558

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

Diff for: examples/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
data/
22
modpacks/
3-
.env
3+
.env
4+
downloads/

Diff for: examples/atm9/docker-compose.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: "3.8"
2+
3+
services:
4+
mc:
5+
image: itzg/minecraft-server
6+
ports:
7+
- "25565:25565"
8+
environment:
9+
EULA: "true"
10+
MOD_PLATFORM: AUTO_CURSEFORGE
11+
# allocate from https://console.curseforge.com/ and set in .env file
12+
CF_API_KEY: ${CF_API_KEY}
13+
CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/all-the-mods-9
14+
# Optional: select a specific version/file
15+
#CF_FILENAME_MATCHER: "0.2.34"
16+
MEMORY: 4G
17+
volumes:
18+
- mc-data:/data
19+
- ./downloads:/downloads
20+
21+
volumes:
22+
mc-data: {}

0 commit comments

Comments
 (0)