From 296ac740b0b1371edfa7ffb6022d4dfd69526d8e Mon Sep 17 00:00:00 2001 From: Kohelbekker Date: Wed, 9 Feb 2022 14:36:36 +0200 Subject: [PATCH] feat: add Mysql, Influxdb, Postgres images with Kiagara --- influxdb/Dockerfile | 11 +++++++++++ influxdb/KAIGARA_VERSION | 1 + influxdb/README.md | 5 +++++ influxdb/VERSION | 1 + mysql/Dockerfile | 11 +++++++++++ mysql/KAIGARA_VERSION | 1 + mysql/README.md | 5 +++++ mysql/VERSION | 1 + supabase-postgres/Dockerfile | 11 +++++++++++ supabase-postgres/KAIGARA_VERSION | 1 + supabase-postgres/README.md | 5 +++++ supabase-postgres/VERSION | 1 + 12 files changed, 54 insertions(+) create mode 100644 influxdb/Dockerfile create mode 100644 influxdb/KAIGARA_VERSION create mode 100644 influxdb/README.md create mode 100644 influxdb/VERSION create mode 100644 mysql/Dockerfile create mode 100644 mysql/KAIGARA_VERSION create mode 100644 mysql/README.md create mode 100644 mysql/VERSION create mode 100644 supabase-postgres/Dockerfile create mode 100644 supabase-postgres/KAIGARA_VERSION create mode 100644 supabase-postgres/README.md create mode 100644 supabase-postgres/VERSION diff --git a/influxdb/Dockerfile b/influxdb/Dockerfile new file mode 100644 index 0000000..8ffecbb --- /dev/null +++ b/influxdb/Dockerfile @@ -0,0 +1,11 @@ +ARG VERSION + +FROM influxdb:${VERSION} + +RUN apk update && apk --no-cache add curl wget + +COPY KAIGARA_VERSION version + +RUN wget "https://github.com/openware/kaigara/releases/download/$(cat version)/kaigara" \ + && chmod +x ./kaigara \ + && mv ./kaigara /usr/local/bin diff --git a/influxdb/KAIGARA_VERSION b/influxdb/KAIGARA_VERSION new file mode 100644 index 0000000..a1b2880 --- /dev/null +++ b/influxdb/KAIGARA_VERSION @@ -0,0 +1 @@ +0.1.31 \ No newline at end of file diff --git a/influxdb/README.md b/influxdb/README.md new file mode 100644 index 0000000..7ee629f --- /dev/null +++ b/influxdb/README.md @@ -0,0 +1,5 @@ +## influxdb:1.7.9-alpine with preinstalled Kaigara + +This is Docker image of `influxdb:1.7.9-alpine` with the latest stable version of Kaigara environment inside. + +[Read more about Kaigara](https://github.com/openware/kaigara) \ No newline at end of file diff --git a/influxdb/VERSION b/influxdb/VERSION new file mode 100644 index 0000000..ef8883a --- /dev/null +++ b/influxdb/VERSION @@ -0,0 +1 @@ +1.7.9-alpine \ No newline at end of file diff --git a/mysql/Dockerfile b/mysql/Dockerfile new file mode 100644 index 0000000..af7fac8 --- /dev/null +++ b/mysql/Dockerfile @@ -0,0 +1,11 @@ +ARG VERSION + +FROM mysql:${VERSION} + +RUN apt install -y curl wget + +COPY KAIGARA_VERSION version + +RUN wget "https://github.com/openware/kaigara/releases/download/$(cat version)/kaigara" \ + && chmod +x ./kaigara \ + && mv ./kaigara /usr/local/bin diff --git a/mysql/KAIGARA_VERSION b/mysql/KAIGARA_VERSION new file mode 100644 index 0000000..a1b2880 --- /dev/null +++ b/mysql/KAIGARA_VERSION @@ -0,0 +1 @@ +0.1.31 \ No newline at end of file diff --git a/mysql/README.md b/mysql/README.md new file mode 100644 index 0000000..551dacc --- /dev/null +++ b/mysql/README.md @@ -0,0 +1,5 @@ +## Mysql:5.7 with preinstalled Kaigara + +This is Docker image of `mysql:5.7` with the latest stable version of Kaigara environment inside. + +[Read more about Kaigara](https://github.com/openware/kaigara) \ No newline at end of file diff --git a/mysql/VERSION b/mysql/VERSION new file mode 100644 index 0000000..43f030c --- /dev/null +++ b/mysql/VERSION @@ -0,0 +1 @@ +5.7 \ No newline at end of file diff --git a/supabase-postgres/Dockerfile b/supabase-postgres/Dockerfile new file mode 100644 index 0000000..66d19c7 --- /dev/null +++ b/supabase-postgres/Dockerfile @@ -0,0 +1,11 @@ +ARG VERSION + +FROM supabase/postgres:${VERSION} + +RUN apt update -y && apt install -y curl wget + +COPY KAIGARA_VERSION version + +RUN wget "https://github.com/openware/kaigara/releases/download/$(cat version)/kaigara" \ + && chmod +x ./kaigara \ + && mv ./kaigara /usr/local/bin diff --git a/supabase-postgres/KAIGARA_VERSION b/supabase-postgres/KAIGARA_VERSION new file mode 100644 index 0000000..a1b2880 --- /dev/null +++ b/supabase-postgres/KAIGARA_VERSION @@ -0,0 +1 @@ +0.1.31 \ No newline at end of file diff --git a/supabase-postgres/README.md b/supabase-postgres/README.md new file mode 100644 index 0000000..90053ba --- /dev/null +++ b/supabase-postgres/README.md @@ -0,0 +1,5 @@ +## supabase/postgres:13.3.0 with preinstalled Kaigara + +This is Docker image of `supabase/postgres:13.3.0` with the latest stable version of Kaigara environment inside. + +[Read more about Kaigara](https://github.com/openware/kaigara) \ No newline at end of file diff --git a/supabase-postgres/VERSION b/supabase-postgres/VERSION new file mode 100644 index 0000000..e70d8de --- /dev/null +++ b/supabase-postgres/VERSION @@ -0,0 +1 @@ +13.3.0 \ No newline at end of file