Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 1.03 KB

README.md

File metadata and controls

35 lines (30 loc) · 1.03 KB

Aternos Thanos. Now on Docker

Not affiliated with aternos.org in any way

PHP library to automatically detect and remove unused chunks from Minecraft worlds. Now on Docker.

Official Repo

Docker Hub Link

Make sure the world you want to optimize is in the watch folder before starting. This container is not meant to run continuously.

Run:

  • Docker CLI
docker run \
  --name=Thanos \
  -e TZ=Europe/London \  #Optional, doesn't really matter
  -v /path/to/world:/watch \ #path to your unoptimized world folder
  -v /path/to/output:/output \ #path to the folder you want your optimized world to be exported. Must be empty
  cristianeduardmihai/thanos
  • Docker Compose
---
version: "2.1"
services:
  thanos:
    image: cristianeduardmihai/thanos
    container_name: Thanos
    environment:
      - TZ=Europe/London
    volumes:
      - /path/to/world:/watch
      - /path/to/output:/output