From fde1f6e0f55f5da688177543e7f73cc17de76816 Mon Sep 17 00:00:00 2001 From: Niklas Date: Sun, 31 Jan 2021 21:03:20 +0100 Subject: [PATCH] added README and build script --- README.md | 11 +++++++++++ build.sh | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 README.md create mode 100755 build.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..df14471 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# FTB Revelations + +Docker image for FTB Revelations ([curseforge.com](https://www.curseforge.com/minecraft/modpacks/ftb-revelation) or [ftb.com](https://www.feed-the-beast.com/modpack/ftb_revelation)). + +Curent version: 3.4.0 + +An example [docker-compose.yml](docker-compose.yml) is given. + +# Update image + +Goto [ftb.com](https://www.feed-the-beast.com/modpack/ftb_revelation) and copy the download link for the installer for the new version. Change the URL and the installer name in the `Dockerfile`. Then run the `build.sh` script to build the image under the right tag. Then push the image. diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..e22e79f --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +sudo docker build -t docker.kapelle.org/ftb-revelations:latest . \ No newline at end of file