-
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.
feat: move all images from old repo (#6)
- Loading branch information
Showing
20 changed files
with
182 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
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,21 +1,5 @@ | ||
FROM docker.io/library/alpine:3.17 | ||
|
||
ARG BUILD_REV | ||
ARG BUILD_DATE | ||
LABEL org.opencontainers.image.title="alwatr/alpine" \ | ||
org.opencontainers.image.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." \ | ||
org.opencontainers.image.base.name="docker.io/library/alpine:3.17" \ | ||
org.opencontainers.image.version="3.17" \ | ||
org.opencontainers.image.ref.name="3.17" \ | ||
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/alpine" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/alpine" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/alpine" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" | ||
|
||
ARG APK_TESTING | ||
RUN set -ex; \ | ||
if [ "$APK_TESTING" != "1" ]; then \ | ||
|
@@ -33,3 +17,22 @@ RUN set -ex; \ | |
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" \ | ||
org.opencontainers.image.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." \ | ||
org.opencontainers.image.base.name="docker.io/library/alpine:3.17" \ | ||
org.opencontainers.image.version="3.17" \ | ||
org.opencontainers.image.ref.name="3.17" \ | ||
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/alpine" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/alpine" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/alpine" \ | ||
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" \ | ||
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." |
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 @@ | ||
* |
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:11.0-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:11.0-3.26.4" \ | ||
org.opencontainers.image.version="11.0" \ | ||
org.opencontainers.image.ref.name="11.0-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 |
---|---|---|
|
@@ -11,7 +11,7 @@ LABEL org.opencontainers.image.title="alwatr/php" \ | |
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/php/7.4-fpm" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/php/7.4-fpm" \ | ||
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/main/php" \ | ||
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/main/php" \ | ||
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/main/php" \ | ||
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 @@ | ||
* |
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="1.7.34" \ | ||
org.opencontainers.image.ref.name="1.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 @@ | ||
* |
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:v3.0.0-beta4 | ||
|
||
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:v3.0.0-beta4" \ | ||
org.opencontainers.image.version="3.0.0-beta4" \ | ||
org.opencontainers.image.ref.name="3.0.0-beta4" \ | ||
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,5 @@ | ||
# Alwatr Traefik Container | ||
|
||
Traefik is designed to work with modern container orchestration platforms like Docker and Kubernetes, and it can automatically discover new services as they are added to the environment. It also provides advanced features like automatic SSL certificate generation and renewal, dynamic routing based on service health checks, and support for multiple backends. | ||
|
||
For more information on Traefik, see the official documentation at <https://doc.traefik.io/traefik/>. |