Skip to content

Instantly share code, notes, and snippets.

@joshthecoder
Last active July 15, 2018 06:24
Show Gist options
  • Save joshthecoder/443fe65c9df7d87666e7d1209432ff2f to your computer and use it in GitHub Desktop.
Save joshthecoder/443fe65c9df7d87666e7d1209432ff2f to your computer and use it in GitHub Desktop.
MC Server - Sponge Survival
version: '3'
services:
minecraft:
image: itzg/minecraft-server
ports:
- "25565:25565"
environment:
EULA: 'TRUE'
TYPE: 'SPONGEVANILLA'
WORLD: ${WORLD_DOWNLOAD_URL}
MODPACK: ${MODPACK_DOWNLOAD_URL}
volumes:
- minecraft-data:/data
- ./mods:/mods:ro
tty: true
stdin_open: true
restart: unless-stopped
volumes:
minecraft-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment