Fallback to existing server file when getbukkit retrieval fails (#2721)

This commit is contained in:
Geoff Bourne
2024-03-16 14:01:21 -05:00
committed by GitHub
parent d7512c44a9
commit 75f5647c93
3 changed files with 40 additions and 20 deletions

View File

@@ -1,6 +1,3 @@
version: '3'
# Other docker-compose examples in /examples
services:
minecraft:
image: itzg/minecraft-server
@@ -9,10 +6,7 @@ services:
ports:
- "25565:25565"
volumes:
- "mc:/data"
- ./data:/data
environment:
EULA: "TRUE"
restart: always
volumes:
mc: {}
restart: unless-stopped

View File

@@ -0,0 +1,13 @@
services:
mc:
image: itzg/minecraft-server
environment:
EULA: true
TYPE: SPIGOT
VERSION: 1.20.4
ports:
- "25565:25565"
volumes:
- data:/data
volumes:
data: {}