Skip to content

Commit

Permalink
feat: move all images from old repo
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm committed Nov 8, 2023
1 parent bd0ee62 commit d08e2d3
Show file tree
Hide file tree
Showing 14 changed files with 105 additions and 24 deletions.
8 changes: 2 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,9 @@
"*.njk": "html",
"ssh-config": "ssh_config"
},
"markdownlint.ignore": [
"**/CHANGELOG.md"
],
"markdownlint.ignore": ["**/CHANGELOG.md"],
"cSpell.language": "en,fa,fa-IR",
"cSpell.words": [
"Alwatr"
],
"cSpell.words": ["adminer", "alwatr", "nocodb", "traefik"],
"git.autoStash": true,
"githubPullRequests.ignoredPullRequestBranches": ["main", "next"]
}
1 change: 1 addition & 0 deletions adminer/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
17 changes: 17 additions & 0 deletions adminer/Dockerfile
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/)"
3 changes: 3 additions & 0 deletions adminer/README.md
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.
36 changes: 18 additions & 18 deletions alpine/Dockerfile
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" \
Expand All @@ -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
1 change: 1 addition & 0 deletions mariadb/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
17 changes: 17 additions & 0 deletions mariadb/Dockerfile
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/)"
3 changes: 3 additions & 0 deletions mariadb/README.md
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.
1 change: 1 addition & 0 deletions nocodb/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
18 changes: 18 additions & 0 deletions nocodb/Dockerfile
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/)"

3 changes: 3 additions & 0 deletions nocodb/README.md
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.
1 change: 1 addition & 0 deletions traefik/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
17 changes: 17 additions & 0 deletions traefik/Dockerfile
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/)"
3 changes: 3 additions & 0 deletions traefik/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Alwatr Traefik Container

A modern reverse-proxy, packaged by Alwatr.

0 comments on commit d08e2d3

Please sign in to comment.