mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-04 17:39:37 +00:00
Create ATM10 example (#3143)
This commit is contained in:
parent
b41e63cec5
commit
14f96d11e5
1 changed files with 31 additions and 0 deletions
31
examples/atm10/docker-compose.yml
Normal file
31
examples/atm10/docker-compose.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
services:
|
||||
mc:
|
||||
image: itzg/minecraft-server
|
||||
tty: true
|
||||
stdin_open: true
|
||||
ports:
|
||||
- "25565:25565"
|
||||
environment:
|
||||
EULA: true
|
||||
MOD_PLATFORM: AUTO_CURSEFORGE
|
||||
# allocate from https://console.curseforge.com/ and set in .env file
|
||||
CF_API_KEY: ${CF_API_KEY}
|
||||
CF_SLUG: all-the-mods-10
|
||||
# Optional: select a specific version/file
|
||||
# CF_FILENAME_MATCHER: "1.17"
|
||||
ALLOW_FLIGHT: true
|
||||
CF_EXCLUDE_MODS: |
|
||||
lighty
|
||||
dark-mode-everywhere
|
||||
iceberg
|
||||
just-enough-mekanism-multiblocks
|
||||
model-gap-fix
|
||||
packmenu
|
||||
reeses-sodium-options
|
||||
sodium-extra
|
||||
sodium-options-api
|
||||
toast-control
|
||||
CF_OVERRIDES_EXCLUSIONS: |
|
||||
shaderpacks/**
|
||||
volumes:
|
||||
data:
|
Loading…
Reference in a new issue