Skip to content

Commit 296ac74

Browse files
committed
feat: add Mysql, Influxdb, Postgres images with Kiagara
1 parent f57d970 commit 296ac74

File tree

12 files changed

+54
-0
lines changed

12 files changed

+54
-0
lines changed

influxdb/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ARG VERSION
2+
3+
FROM influxdb:${VERSION}
4+
5+
RUN apk update && apk --no-cache add curl wget
6+
7+
COPY KAIGARA_VERSION version
8+
9+
RUN wget "https://github.com/openware/kaigara/releases/download/$(cat version)/kaigara" \
10+
&& chmod +x ./kaigara \
11+
&& mv ./kaigara /usr/local/bin

influxdb/KAIGARA_VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.31

influxdb/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## influxdb:1.7.9-alpine with preinstalled Kaigara
2+
3+
This is Docker image of `influxdb:1.7.9-alpine` with the latest stable version of Kaigara environment inside.
4+
5+
[Read more about Kaigara](https://github.com/openware/kaigara)

influxdb/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.7.9-alpine

mysql/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ARG VERSION
2+
3+
FROM mysql:${VERSION}
4+
5+
RUN apt install -y curl wget
6+
7+
COPY KAIGARA_VERSION version
8+
9+
RUN wget "https://github.com/openware/kaigara/releases/download/$(cat version)/kaigara" \
10+
&& chmod +x ./kaigara \
11+
&& mv ./kaigara /usr/local/bin

mysql/KAIGARA_VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.31

mysql/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Mysql:5.7 with preinstalled Kaigara
2+
3+
This is Docker image of `mysql:5.7` with the latest stable version of Kaigara environment inside.
4+
5+
[Read more about Kaigara](https://github.com/openware/kaigara)

mysql/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5.7

supabase-postgres/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ARG VERSION
2+
3+
FROM supabase/postgres:${VERSION}
4+
5+
RUN apt update -y && apt install -y curl wget
6+
7+
COPY KAIGARA_VERSION version
8+
9+
RUN wget "https://github.com/openware/kaigara/releases/download/$(cat version)/kaigara" \
10+
&& chmod +x ./kaigara \
11+
&& mv ./kaigara /usr/local/bin

supabase-postgres/KAIGARA_VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.31

0 commit comments

Comments
 (0)