Download and use packwiz from Maven repository (#1725)

Also
* Added github actions debug support
* added use of fileNotExists
This commit is contained in:
Geoff Bourne
2022-09-10 12:58:32 -05:00
committed by GitHub
parent 4d3464f3f1
commit fabe14db49
12 changed files with 98 additions and 74 deletions

3
examples/.gitignore vendored
View File

@@ -1 +1,2 @@
/data/
/data/
modpacks/

View 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: {}

View 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: {}