Skip to content

Instantly share code, notes, and snippets.

@hchasens
Created January 8, 2022 00:15
Show Gist options
  • Save hchasens/cb959310a9ec261923a73e74f57f7d11 to your computer and use it in GitHub Desktop.
Save hchasens/cb959310a9ec261923a73e74f57f7d11 to your computer and use it in GitHub Desktop.
Docker-compose file for Minecraft Papermc server - 1.18 compatible
version: "3.3"
services:
papermc-server:
image: hchasens/papermc:1.18.1
container_name: papermc
hostname: papermc
user: 1000:1000
ports:
- "25565:25565"
- "25575:25575"
environment:
- MC_RAM=4G
volumes:
- ./papermc/:/papermc/
restart: unless-stopped
stdin_open: true
tty: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment