-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Mysql, Influxdb, Postgres images with Kiagara
- Loading branch information
1 parent
f57d970
commit 296ac74
Showing
12 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.7.9-alpine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
13.3.0 |