Docker image to create a backups of a Java Edition Minecraft world living on an FTP server somewhere.
docker pull bborge/ftp-minecraft-world-backup:latest
docker run \
-e FTP_HOST=999.9.99.99 \
-e FTP_USERNAME=MyUser \
-e FTP_PASSWORD=MYSUPERSECRET! \
-e WORLD_DIR=WORLD \
bborge/ftp-minecraft-world-backup:latest
- Create the file
.env - Stamp out required environment variables in
.env - Validate docker-compose file with
docker-compose config. You should see your environment variables in the output. - run
docker-compose up
FTP_HOST- FTP host.FTP_USERNAME- Username for FTP login.FTP_PASSWORD- Password for FTP login.WORLD_DIR- Directory where the minecraft world lives.