Sign inSign up

saramorillon/minecraft

By saramorillon

Updated 9 months ago

Minecraft inside docker

Image
0

898

saramorillon/minecraft repository overview

Minecraft in Docker

Run Minecraft in Docker using docker run


docker run saramorillon/minecraft:latest

Or using docker-compose

version: "3"
services:
  awesome_server:
    image: saramorillon/minecraft:latest
    container_name: awesome_server
    ports:
      - 25565:25565

Volumes

Minecraft application is stored under /usr/app.

version: "3"
services:
  awesome_server:
    image: saramorillon/minecraft:latest
    container_name: awesome_server
    ports:
      - 25565:25565
    volumes:
      - ./server.properties:/usr/app/server.properties
      - ./whitelist.json:/usr/app/whitelist.json
      - ./ops.json:/usr/app/ops.json
      - ./world:/usr/app/world

Versions

saramorillon/minecraft tags follow minecraft versions.

Tag summary

Content type

Image

Digest

sha256:3bad4d085

Size

228.3 MB

Last updated

9 months ago

docker pull saramorillon/minecraft