mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
fabe14db49
Also * Added github actions debug support * added use of fileNotExists
21 lines
408 B
YAML
21 lines
408 B
YAML
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: {} |