24 lines
583 B
YAML
24 lines
583 B
YAML
version: '3.5'
|
|
services:
|
|
papermc:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- 'MC_VERSION=${MC_VERSION}'
|
|
- 'PAPERMC_VERSION=${PAPERMC_VERSION}'
|
|
image: 'mc-papermc-server:${MC_VERSION}-${PAPERMC_VERSION}'
|
|
|
|
restart: unless-stopped
|
|
stdin_open: true
|
|
tty: true
|
|
|
|
environment:
|
|
- XMS
|
|
- XMX
|
|
ports:
|
|
- '$PORT:25565'
|
|
volumes:
|
|
- '$CONFIG_DIR:/minecraft/config'
|
|
- '$WORLDS_DIR:/minecraft/worlds'
|