-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
105 additions
and
24 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
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 @@ | ||
* |
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,17 @@ | ||
FROM docker.io/wodby/adminer:4.8-3.24.4 | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/adminer" \ | ||
org.opencontainers.image.description="Database management in a single PHP file, packaged by Alwatr." \ | ||
org.opencontainers.image.base.name="docker.io/library/adminer:4.8-3.24.4" \ | ||
org.opencontainers.image.version="4.8" \ | ||
org.opencontainers.image.ref.name="4.8-3.24.4" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.revision=${BUILD_REV} \ | ||
org.opencontainers.image.vendor="Alwatr" \ | ||
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/main/adminer" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/adminer" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/adminer" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" |
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,3 @@ | ||
# Alwatr Adminer Container | ||
|
||
Database management in a single PHP file, packaged by Alwatr. |
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 |
---|---|---|
@@ -1,5 +1,23 @@ | ||
FROM docker.io/library/alpine:3.17 | ||
|
||
ARG APK_TESTING | ||
RUN set -ex; \ | ||
if [ "$APK_TESTING" != "1" ]; then \ | ||
echo "Skip alpine edge testing repository"; \ | ||
else \ | ||
echo "Add alpine edge testing repository"; \ | ||
echo 'https://dl-cdn.alpinelinux.org/alpine/edge/testing/' >> /etc/apk/repositories; \ | ||
fi | ||
|
||
ARG APK_INSTALL | ||
RUN set -ex; \ | ||
if [ "$APK_INSTALL" != "1" ]; then \ | ||
echo "Skip apk install"; \ | ||
else \ | ||
echo "Add alpine edge testing repository"; \ | ||
apk add --no-cache ${APK_INSTALL}; \ | ||
fi | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/alpine" \ | ||
|
@@ -18,21 +36,3 @@ LABEL org.opencontainers.image.title="alwatr/alpine" \ | |
maintainer="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" \ | ||
version="3.17" \ | ||
description="This is a lightweight Linux image for use in containerized applications. It includes only the necessary packages and dependencies to keep the image size small and efficient, packaged by Alwatr." | ||
|
||
ARG APK_TESTING | ||
RUN set -ex; \ | ||
if [ "$APK_TESTING" != "1" ]; then \ | ||
echo "Skip alpine edge testing repository"; \ | ||
else \ | ||
echo "Add alpine edge testing repository"; \ | ||
echo 'https://dl-cdn.alpinelinux.org/alpine/edge/testing/' >> /etc/apk/repositories; \ | ||
fi | ||
|
||
ARG APK_INSTALL | ||
RUN set -ex; \ | ||
if [ "$APK_INSTALL" != "1" ]; then \ | ||
echo "Skip apk install"; \ | ||
else \ | ||
echo "Add alpine edge testing repository"; \ | ||
apk add --no-cache ${APK_INSTALL}; \ | ||
fi |
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 @@ | ||
* |
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,17 @@ | ||
FROM docker.io/wodby/mariadb:10.9-3.26.4 | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/mariadb" \ | ||
org.opencontainers.image.description="A fork of the MySQL relational database management system, packaged by Alwatr." \ | ||
org.opencontainers.image.base.name="docker.io/wodby/mariadb:10.9-3.26.4" \ | ||
org.opencontainers.image.version="10.9" \ | ||
org.opencontainers.image.ref.name="10.9-3.26.4" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.revision=${BUILD_REV} \ | ||
org.opencontainers.image.vendor="Alwatr" \ | ||
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/main/mariadb" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/mariadb" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/mariadb" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" |
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,3 @@ | ||
# Alwatr Mariadb Container | ||
|
||
A fork of the MySQL relational database management system, packaged by Alwatr. |
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 @@ | ||
* |
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,18 @@ | ||
FROM docker.io/nocodb/nocodb:0.202.5 | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/nocodb" \ | ||
org.opencontainers.image.description="A free, open-source, self-hosted, and extensible database management tool that helps you easily manage and visualize your data, packaged by Alwatr." \ | ||
org.opencontainers.image.base.name="docker.io/wodby/nocodb:0.202.5" \ | ||
org.opencontainers.image.version="0.202.5" \ | ||
org.opencontainers.image.ref.name="0.202.5" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.revision=${BUILD_REV} \ | ||
org.opencontainers.image.vendor="Alwatr" \ | ||
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/main/nocodb" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/nocodb" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/nocodb" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" | ||
|
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,3 @@ | ||
# Alwatr Nocodb Container | ||
|
||
A free, open-source, self-hosted, and extensible database management tool that helps you easily manage and visualize your data, packaged by Alwatr. |
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 @@ | ||
* |
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,17 @@ | ||
FROM docker.io/library/traefik:v1.7.34-alpine | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/traefik" \ | ||
org.opencontainers.image.description="A modern reverse-proxy, packaged by Alwatr." \ | ||
org.opencontainers.image.base.name="docker.io/library/traefik:v1.7.34-alpine" \ | ||
org.opencontainers.image.version="v1.7.34" \ | ||
org.opencontainers.image.ref.name="v1.7.34-alpine" \ | ||
org.opencontainers.image.licenses="MIT" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.revision=${BUILD_REV} \ | ||
org.opencontainers.image.vendor="Alwatr" \ | ||
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/main/traefik" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/traefik" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/traefik" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" |
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,3 @@ | ||
# Alwatr Traefik Container | ||
|
||
A modern reverse-proxy, packaged by Alwatr. |