You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
382 B

version: "3"
services:
minecraft:
image: "marctv/minecraft-papermc-server:latest"
restart: unless-stopped
container_name: "mcserver"
environment:
MEMORYSIZE: "1G"
PAPERMC_FLAGS: ""
volumes:
- "./mcserver:/data:rw"
ports:
- "25565:25565"
# The following allow `docker attach minecraft` to work
stdin_open: true
tty: true