mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-04-04 12:48:51 +00:00
Download and use packwiz from Maven repository (#1725)
Also * Added github actions debug support * added use of fileNotExists
This commit is contained in:
3
examples/.gitignore
vendored
3
examples/.gitignore
vendored
@@ -1 +1,2 @@
|
||||
/data/
|
||||
/data/
|
||||
modpacks/
|
||||
21
examples/docker-compose-mods-mount.yml
Normal file
21
examples/docker-compose-mods-mount.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
minecraft:
|
||||
image: itzg/minecraft-server
|
||||
volumes:
|
||||
- data:/data
|
||||
- ./mods:/mods
|
||||
ports:
|
||||
- "25565:25565"
|
||||
environment:
|
||||
EULA: "true"
|
||||
TYPE: "FORGE"
|
||||
VERSION: "1.19.2"
|
||||
DEBUG: "true"
|
||||
SETUP_ONLY: "true"
|
||||
tty: True
|
||||
stdin_open: True
|
||||
|
||||
volumes:
|
||||
data: {}
|
||||
21
examples/valhelsia2/docker-compose.yml
Normal file
21
examples/valhelsia2/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
mc:
|
||||
image: itzg/minecraft-server:java8-multiarch
|
||||
volumes:
|
||||
- data:/data
|
||||
- ./modpacks:/modpacks:ro
|
||||
environment:
|
||||
EULA: "true"
|
||||
TYPE: FORGE
|
||||
VERSION: "1.15.2"
|
||||
GENERIC_PACK: /modpacks/Valhelsia_2-2.3.4-SERVER.zip
|
||||
MEMORY: "2G"
|
||||
ports:
|
||||
- "25565:25565"
|
||||
healthcheck:
|
||||
test: NONE
|
||||
|
||||
volumes:
|
||||
data: {}
|
||||
Reference in New Issue
Block a user