Compare commits
1 Commits
556d75e486
...
4da7c44335
Author | SHA1 | Date | |
---|---|---|---|
|
4da7c44335 |
@ -1,190 +0,0 @@
|
|||||||
name: Create Docker Image
|
|
||||||
run-name: ${{ gitea.actor }} Building Docker Image 🐳
|
|
||||||
on: [push]
|
|
||||||
env:
|
|
||||||
VERSION: 8.3-fpm
|
|
||||||
DOCKER_HOST: tcp://127.0.0.1:2375
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
arch:
|
|
||||||
- x86_64
|
|
||||||
- arm64
|
|
||||||
|
|
||||||
name: Build Docker Image
|
|
||||||
runs-on: docker-${{ matrix.arch }}
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
env:
|
|
||||||
ARCH: ${{ matrix.arch }}
|
|
||||||
VERSIONARCH: ${{ env.VERSION }}-${{ env.ARCH }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
## Some debugging info
|
|
||||||
# docker info && docker version
|
|
||||||
# env|sort
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Code Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build and Push Docker Image
|
|
||||||
uses: docker/build-push-action@v5
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: docker/Dockerfile
|
|
||||||
push: true
|
|
||||||
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSIONARCH }}"
|
|
||||||
|
|
||||||
manifest:
|
|
||||||
name: Final Docker Image Manifest
|
|
||||||
runs-on: docker-x86_64
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
needs: [build]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build Docker Manifest
|
|
||||||
run: |
|
|
||||||
docker manifest create ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }} \
|
|
||||||
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-x86_64 \
|
|
||||||
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-arm64
|
|
||||||
docker manifest push --purge ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}
|
|
||||||
|
|
||||||
test:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
arch:
|
|
||||||
- x86_64
|
|
||||||
# arm64
|
|
||||||
|
|
||||||
name: Build Docker Test Image
|
|
||||||
runs-on: docker-${{ matrix.arch }}
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
env:
|
|
||||||
ARCH: ${{ matrix.arch }}
|
|
||||||
VERSIONARCH: ${{ env.VERSION }}-test-${{ env.ARCH }}
|
|
||||||
needs: [manifest]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
## Some debugging info
|
|
||||||
# docker info && docker version
|
|
||||||
# env|sort
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Code Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build and Push Docker Image
|
|
||||||
uses: docker/build-push-action@v5
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: docker/Dockerfile.phptest
|
|
||||||
push: true
|
|
||||||
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSIONARCH }}"
|
|
||||||
|
|
||||||
manifest-test:
|
|
||||||
name: Final Docker Test Image Manifest
|
|
||||||
runs-on: docker-x86_64
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
needs: [test]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build Docker Manifest
|
|
||||||
run: |
|
|
||||||
docker manifest create ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test \
|
|
||||||
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test-x86_64
|
|
||||||
#${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test-arm64
|
|
||||||
docker manifest push --purge ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test
|
|
35
.gitlab-ci.yml
Normal file
35
.gitlab-ci.yml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- build-manifest
|
||||||
|
- build-test
|
||||||
|
- build-manifest-test
|
||||||
|
|
||||||
|
variables:
|
||||||
|
BRANCH: pgsql
|
||||||
|
VERSION: 8.3-fpm-${BRANCH}
|
||||||
|
DOCKER_HOST: tcp://docker:2375
|
||||||
|
VERSIONARCH: ${VERSION}-${ARCH}
|
||||||
|
|
||||||
|
cache:
|
||||||
|
key: ${CI_JOB_NAME_SLUG}-${CI_COMMIT_REF_SLUG}
|
||||||
|
paths:
|
||||||
|
- build-cache
|
||||||
|
|
||||||
|
image: docker:latest
|
||||||
|
services:
|
||||||
|
- docker:dind
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- if [ ! -d build-cache ]; then mkdir build-cache; fi
|
||||||
|
- if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
||||||
|
- apk add git curl
|
||||||
|
- docker info && docker version
|
||||||
|
# env|sort
|
||||||
|
# docker login -u "$CI_DEPENDENCY_PROXY_USER" -p "$CI_DEPENDENCY_PROXY_PASSWORD" "$CI_SERVER_HOST"
|
||||||
|
- echo "$CI_JOB_TOKEN" | docker login -u "$CI_REGISTRY_USER" "$CI_REGISTRY" --password-stdin
|
||||||
|
|
||||||
|
include:
|
||||||
|
- .gitlab-docker-x86_64.yml
|
||||||
|
- .gitlab-docker-armv7l.yml
|
||||||
|
- .gitlab-docker-arm64.yml
|
||||||
|
- .gitlab-docker-manifest.yml
|
29
.gitlab-docker-arm64.yml
Normal file
29
.gitlab-docker-arm64.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
arm64:build:
|
||||||
|
variables:
|
||||||
|
ARCH: arm64
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- if [ -f init ]; then chmod 500 init; fi
|
||||||
|
- ([ -z "$REFRESH" -a -f build-cache/${CI_COMMIT_REF_SLUG} ]) && docker load < build-cache/${CI_COMMIT_REF_SLUG} || true
|
||||||
|
- rm build-cache/* || true
|
||||||
|
- docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --cache-from ${CI_REGISTRY_IMAGE}:${VERSIONARCH} -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH} .
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}
|
||||||
|
- docker save ${CI_REGISTRY_IMAGE}:${VERSIONARCH} > build-cache/${CI_COMMIT_REF_SLUG}
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- arm64
|
||||||
|
only:
|
||||||
|
- pgsql
|
||||||
|
|
||||||
|
#arm64:build-test:
|
||||||
|
# variables:
|
||||||
|
# ARCH: arm64
|
||||||
|
# stage: build-test
|
||||||
|
# script:
|
||||||
|
# - docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --file Dockerfile.phptest -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH}-test .
|
||||||
|
# - docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}-test
|
||||||
|
# tags:
|
||||||
|
# - docker
|
||||||
|
# - arm64
|
||||||
|
# only:
|
||||||
|
# - pgsql
|
29
.gitlab-docker-armv7l.yml
Normal file
29
.gitlab-docker-armv7l.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
armv7l:build:
|
||||||
|
variables:
|
||||||
|
ARCH: armv7l
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- if [ -f init ]; then chmod 500 init; fi
|
||||||
|
- ([ -z "$REFRESH" -a -f build-cache/${CI_COMMIT_REF_SLUG} ]) && docker load < build-cache/${CI_COMMIT_REF_SLUG} || true
|
||||||
|
- rm build-cache/* || true
|
||||||
|
- docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --cache-from ${CI_REGISTRY_IMAGE}:${VERSIONARCH} -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH} .
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}
|
||||||
|
- docker save ${CI_REGISTRY_IMAGE}:${VERSIONARCH} > build-cache/${CI_COMMIT_REF_SLUG}
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- armv7l
|
||||||
|
only:
|
||||||
|
- pgsql
|
||||||
|
|
||||||
|
#armv7l:build-test:
|
||||||
|
# variables:
|
||||||
|
# ARCH: armv7l
|
||||||
|
# stage: build-test
|
||||||
|
# script:
|
||||||
|
# - docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --file Dockerfile.phptest -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH}-test .
|
||||||
|
# - docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}-test
|
||||||
|
# tags:
|
||||||
|
# - docker
|
||||||
|
# - armv7l
|
||||||
|
# only:
|
||||||
|
# - pgsql
|
23
.gitlab-docker-manifest.yml
Normal file
23
.gitlab-docker-manifest.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
x86_64:build-manifest:
|
||||||
|
stage: build-manifest
|
||||||
|
script:
|
||||||
|
- docker manifest create ${CI_REGISTRY_IMAGE}:${VERSION} ${CI_REGISTRY_IMAGE}:${VERSION}-x86_64 ${CI_REGISTRY_IMAGE}:${VERSION}-arm64 ${CI_REGISTRY_IMAGE}:${VERSION}-armv7l
|
||||||
|
- docker manifest push --purge ${CI_REGISTRY_IMAGE}:${VERSION}
|
||||||
|
- apk add --no-cache curl
|
||||||
|
- if [ -n "${AUTO_BUILD}" ]; then curl -LX POST --post301 -F token=${TRIGGER_TOKEN} -F ref=pgsql-server ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/trigger/pipeline; fi
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- x86_64
|
||||||
|
only:
|
||||||
|
- pgsql
|
||||||
|
|
||||||
|
x86_64:build-manifest-test:
|
||||||
|
stage: build-manifest-test
|
||||||
|
script:
|
||||||
|
- docker manifest create ${CI_REGISTRY_IMAGE}:${VERSION}-test ${CI_REGISTRY_IMAGE}:${VERSION}-x86_64-test #${CI_REGISTRY_IMAGE}:${VERSION}-arm64-test #${CI_REGISTRY_IMAGE}:${VERSION}-armv7l-test
|
||||||
|
- docker manifest push --purge ${CI_REGISTRY_IMAGE}:${VERSION}-test
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- x86_64
|
||||||
|
only:
|
||||||
|
- pgsql
|
29
.gitlab-docker-x86_64.yml
Normal file
29
.gitlab-docker-x86_64.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
x86_64:build:
|
||||||
|
variables:
|
||||||
|
ARCH: x86_64
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- if [ -f init ]; then chmod 500 init; fi
|
||||||
|
- ([ -z "$REFRESH" -a -f build-cache/${CI_COMMIT_REF_SLUG} ]) && docker load < build-cache/${CI_COMMIT_REF_SLUG} || true
|
||||||
|
- rm build-cache/* || true
|
||||||
|
- docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --cache-from ${CI_REGISTRY_IMAGE}:${VERSIONARCH} -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH} .
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}
|
||||||
|
- docker save ${CI_REGISTRY_IMAGE}:${VERSIONARCH} > build-cache/${CI_COMMIT_REF_SLUG}
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- x86_64
|
||||||
|
only:
|
||||||
|
- pgsql
|
||||||
|
|
||||||
|
x86_64:build-test:
|
||||||
|
variables:
|
||||||
|
ARCH: x86_64
|
||||||
|
stage: build-test
|
||||||
|
script:
|
||||||
|
- docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} --file Dockerfile.phptest -t ${CI_REGISTRY_IMAGE}:${VERSIONARCH}-test .
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}-test
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- x86_64
|
||||||
|
only:
|
||||||
|
- pgsql
|
@ -1,7 +1,7 @@
|
|||||||
# NAME docker/php
|
# NAME leenooks/php
|
||||||
# VERSION 8.3-fpm-pgsql
|
# VERSION 8.3-fpm-pgsql
|
||||||
|
|
||||||
FROM gitea.dege.au/docker/php:8.3-fpm
|
FROM registry.dege.au/leenooks/php:8.3-fpm
|
||||||
|
|
||||||
RUN apk add --no-cache postgresql-client libpq libpq-dev && \
|
RUN apk add --no-cache postgresql-client libpq libpq-dev && \
|
||||||
docker-php-ext-install -j$(nproc) pdo_pgsql && \
|
docker-php-ext-install -j$(nproc) pdo_pgsql && \
|
@ -1,7 +1,7 @@
|
|||||||
# NAME docker/php
|
# NAME leenooks/php
|
||||||
# VERSION 8.3-fpm-pgsql-test
|
# VERSION 8.3-fpm-pgsql-test
|
||||||
|
|
||||||
FROM gitea.dege.au/docker/php:8.3-fpm-pgsql
|
FROM registry.dege.au/leenooks/php:8.3-fpm-pgsql
|
||||||
|
|
||||||
# Add xdebug
|
# Add xdebug
|
||||||
RUN apk --no-cache add linux-headers \
|
RUN apk --no-cache add linux-headers \
|
Loading…
Reference in New Issue
Block a user