From 35a44c6872d5bf4609a44847b48aba2c59ace046 Mon Sep 17 00:00:00 2001 From: casjay Date: Thu, 4 Jun 2026 16:21:48 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Deleted=20workflow=20files=20?= =?UTF-8?q?=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .gitea/workflows/docker.3.14.yaml .gitea/workflows/docker.3.15.yaml .gitea/workflows/docker.3.16.yaml .gitea/workflows/docker.3.17.yaml .gitea/workflows/docker.3.18.yaml .gitea/workflows/docker.3.19.yaml .gitea/workflows/docker.3.20.yaml .gitea/workflows/docker.3.21.yaml .gitea/workflows/docker.3.22.yaml .gitea/workflows/docker.edge.yaml .gitea/workflows/docker.yaml .github/workflows/docker.3.14.yaml .github/workflows/docker.3.15.yaml .github/workflows/docker.3.16.yaml .github/workflows/docker.3.17.yaml .github/workflows/docker.3.18.yaml .github/workflows/docker.3.19.yaml .github/workflows/docker.3.20.yaml .github/workflows/docker.3.21.yaml .github/workflows/docker.3.22.yaml .github/workflows/docker.edge.yaml .github/workflows/docker.yaml --- .gitea/workflows/docker.3.14.yaml | 84 ----------------------------- .gitea/workflows/docker.3.15.yaml | 84 ----------------------------- .gitea/workflows/docker.3.16.yaml | 84 ----------------------------- .gitea/workflows/docker.3.17.yaml | 84 ----------------------------- .gitea/workflows/docker.3.18.yaml | 84 ----------------------------- .gitea/workflows/docker.3.19.yaml | 84 ----------------------------- .gitea/workflows/docker.3.20.yaml | 84 ----------------------------- .gitea/workflows/docker.3.21.yaml | 84 ----------------------------- .gitea/workflows/docker.3.22.yaml | 84 ----------------------------- .gitea/workflows/docker.edge.yaml | 84 ----------------------------- .gitea/workflows/docker.yaml | 85 ----------------------------- .github/workflows/docker.3.14.yaml | 85 ----------------------------- .github/workflows/docker.3.15.yaml | 85 ----------------------------- .github/workflows/docker.3.16.yaml | 85 ----------------------------- .github/workflows/docker.3.17.yaml | 85 ----------------------------- .github/workflows/docker.3.18.yaml | 85 ----------------------------- .github/workflows/docker.3.19.yaml | 85 ----------------------------- .github/workflows/docker.3.20.yaml | 85 ----------------------------- .github/workflows/docker.3.21.yaml | 85 ----------------------------- .github/workflows/docker.3.22.yaml | 85 ----------------------------- .github/workflows/docker.edge.yaml | 85 ----------------------------- .github/workflows/docker.yaml | 86 ------------------------------ 22 files changed, 1861 deletions(-) delete mode 100644 .gitea/workflows/docker.3.14.yaml delete mode 100644 .gitea/workflows/docker.3.15.yaml delete mode 100644 .gitea/workflows/docker.3.16.yaml delete mode 100644 .gitea/workflows/docker.3.17.yaml delete mode 100644 .gitea/workflows/docker.3.18.yaml delete mode 100644 .gitea/workflows/docker.3.19.yaml delete mode 100644 .gitea/workflows/docker.3.20.yaml delete mode 100644 .gitea/workflows/docker.3.21.yaml delete mode 100644 .gitea/workflows/docker.3.22.yaml delete mode 100644 .gitea/workflows/docker.edge.yaml delete mode 100644 .gitea/workflows/docker.yaml delete mode 100644 .github/workflows/docker.3.14.yaml delete mode 100644 .github/workflows/docker.3.15.yaml delete mode 100644 .github/workflows/docker.3.16.yaml delete mode 100644 .github/workflows/docker.3.17.yaml delete mode 100644 .github/workflows/docker.3.18.yaml delete mode 100644 .github/workflows/docker.3.19.yaml delete mode 100644 .github/workflows/docker.3.20.yaml delete mode 100644 .github/workflows/docker.3.21.yaml delete mode 100644 .github/workflows/docker.3.22.yaml delete mode 100644 .github/workflows/docker.edge.yaml delete mode 100644 .github/workflows/docker.yaml diff --git a/.gitea/workflows/docker.3.14.yaml b/.gitea/workflows/docker.3.14.yaml deleted file mode 100644 index 0c8d3f0..0000000 --- a/.gitea/workflows/docker.3.14.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-14 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.14 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.14 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.14 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.14 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.14 diff --git a/.gitea/workflows/docker.3.15.yaml b/.gitea/workflows/docker.3.15.yaml deleted file mode 100644 index f1d110b..0000000 --- a/.gitea/workflows/docker.3.15.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-15 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.15 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.15 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.15 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.15 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.15 diff --git a/.gitea/workflows/docker.3.16.yaml b/.gitea/workflows/docker.3.16.yaml deleted file mode 100644 index 6e5e308..0000000 --- a/.gitea/workflows/docker.3.16.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-16 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.16 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.16 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.16 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.16 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.16 diff --git a/.gitea/workflows/docker.3.17.yaml b/.gitea/workflows/docker.3.17.yaml deleted file mode 100644 index 5fb9a0e..0000000 --- a/.gitea/workflows/docker.3.17.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-17 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.17 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.17 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.17 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.17 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.17 diff --git a/.gitea/workflows/docker.3.18.yaml b/.gitea/workflows/docker.3.18.yaml deleted file mode 100644 index 5604f01..0000000 --- a/.gitea/workflows/docker.3.18.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-18 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.18 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.18 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.18 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.18 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.18 diff --git a/.gitea/workflows/docker.3.19.yaml b/.gitea/workflows/docker.3.19.yaml deleted file mode 100644 index 46bf648..0000000 --- a/.gitea/workflows/docker.3.19.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-19 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.19 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.19 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.19 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.19 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.19 diff --git a/.gitea/workflows/docker.3.20.yaml b/.gitea/workflows/docker.3.20.yaml deleted file mode 100644 index bc8388a..0000000 --- a/.gitea/workflows/docker.3.20.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-20 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.20 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.20 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.20 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.20 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.20 diff --git a/.gitea/workflows/docker.3.21.yaml b/.gitea/workflows/docker.3.21.yaml deleted file mode 100644 index f2dcfeb..0000000 --- a/.gitea/workflows/docker.3.21.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-21 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.21 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.21 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.21 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.21 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.21 diff --git a/.gitea/workflows/docker.3.22.yaml b/.gitea/workflows/docker.3.22.yaml deleted file mode 100644 index 24e69ad..0000000 --- a/.gitea/workflows/docker.3.22.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-3-22 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.3.22 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.22 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.22 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.22 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:3.22 diff --git a/.gitea/workflows/docker.edge.yaml b/.gitea/workflows/docker.edge.yaml deleted file mode 100644 index 0afcd41..0000000 --- a/.gitea/workflows/docker.edge.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: alpine-edge - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.edge - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=edge - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=edge - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=edge - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:edge diff --git a/.gitea/workflows/docker.yaml b/.gitea/workflows/docker.yaml deleted file mode 100644 index d3eba82..0000000 --- a/.gitea/workflows/docker.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.22 - IMAGE_REPO=casjaysdev/alpine - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.22 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/alpine - org.opencontainers.image.description=Containerized version of casjaysdev/alpine - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.22 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/alpine:latest - docker.io/casjaysdev/alpine:${{ steps.meta.outputs.DATE_TAG }} diff --git a/.github/workflows/docker.3.14.yaml b/.github/workflows/docker.3.14.yaml deleted file mode 100644 index de23d5c..0000000 --- a/.github/workflows/docker.3.14.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-14 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.14 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.14 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.14 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.14 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.14 diff --git a/.github/workflows/docker.3.15.yaml b/.github/workflows/docker.3.15.yaml deleted file mode 100644 index fe73012..0000000 --- a/.github/workflows/docker.3.15.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-15 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.15 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.15 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.15 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.15 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.15 diff --git a/.github/workflows/docker.3.16.yaml b/.github/workflows/docker.3.16.yaml deleted file mode 100644 index fd868cf..0000000 --- a/.github/workflows/docker.3.16.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-16 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.16 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.16 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.16 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.16 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.16 diff --git a/.github/workflows/docker.3.17.yaml b/.github/workflows/docker.3.17.yaml deleted file mode 100644 index e91f7ca..0000000 --- a/.github/workflows/docker.3.17.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-17 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.17 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.17 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.17 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.17 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.17 diff --git a/.github/workflows/docker.3.18.yaml b/.github/workflows/docker.3.18.yaml deleted file mode 100644 index cc2ede4..0000000 --- a/.github/workflows/docker.3.18.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-18 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.18 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.18 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.18 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.18 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.18 diff --git a/.github/workflows/docker.3.19.yaml b/.github/workflows/docker.3.19.yaml deleted file mode 100644 index 0dfa8cb..0000000 --- a/.github/workflows/docker.3.19.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-19 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.19 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.19 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.19 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.19 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.19 diff --git a/.github/workflows/docker.3.20.yaml b/.github/workflows/docker.3.20.yaml deleted file mode 100644 index f487614..0000000 --- a/.github/workflows/docker.3.20.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-20 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.20 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.20 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.20 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.20 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.20 diff --git a/.github/workflows/docker.3.21.yaml b/.github/workflows/docker.3.21.yaml deleted file mode 100644 index 9cab0c9..0000000 --- a/.github/workflows/docker.3.21.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-21 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.21 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.21 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.21 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.21 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.21 diff --git a/.github/workflows/docker.3.22.yaml b/.github/workflows/docker.3.22.yaml deleted file mode 100644 index e11f949..0000000 --- a/.github/workflows/docker.3.22.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-3-22 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.3.22 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.22 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.22 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.22 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:3.22 diff --git a/.github/workflows/docker.edge.yaml b/.github/workflows/docker.edge.yaml deleted file mode 100644 index 0b0d7ae..0000000 --- a/.github/workflows/docker.edge.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: alpine-edge - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.edge - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=edge - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=edge - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=edge - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:edge diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml deleted file mode 100644 index ce8ba64..0000000 --- a/.github/workflows/docker.yaml +++ /dev/null @@ -1,86 +0,0 @@ -name: alpine - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=alpine - IMAGE_VERSION=3.22 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=alpine - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=alpine - DISTRO_VERSION=3.22 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=3.22 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:latest - ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.DATE_TAG }}