Compare commits

...

2 Commits

Author SHA1 Message Date
Gertjan Krol 6e392c11a6 Removed commented statement
Test / test_build (push) Successful in 17s Details
Release / build_push (push) Successful in 21s Details
2023-09-02 17:11:21 +02:00
Gertjan Krol 759c85e4bb Updated workflows 2023-09-02 17:04:53 +02:00
2 changed files with 35 additions and 16 deletions

View File

@ -8,15 +8,27 @@ jobs:
build_push:
runs-on: ubuntu-latest
container: git.gertjankrol.nl/docker/toolkit:latest
env:
REGISTRY: git.gertjankrol.nl
IMAGE_NAMESPACE: docker/php
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Docker login
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} https://${REGISTRY}
- name: Build and push containers
run: |
docker build . -t ${REGISTRY}/${IMAGE_NAMESPACE}:${{ github.ref_name }} --push
docker build . -f Dockerfile-fpm -t ${REGISTRY}/${IMAGE_NAMESPACE}:${{ github.ref_name }}-fpm --push
uses: actions/docker-login@v2
with:
registry: ${{secrets.DOCKER_REGISTRY}}
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and push PHP image
uses: actions/docker-build-push@v4
with:
tags: |
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}}
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:latest
push: true
- name: Build and push PHP-FPM image
uses: actions/docker-build-push@v4
with:
tags: |
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}-fpm:${{github.ref_name}}
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}-fpm:latest
file: Dockerfile-fpm
push: true

View File

@ -11,11 +11,18 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build containers
run: |
docker build . -t php-test:${{ github.ref_name }}
docker build . -f Dockerfile-fpm -t php-test:${{ github.ref_name }}-fpm
- name: Default image details
run: docker image inspect php-test:${{ github.ref_name }}
- name: FPM image details
run: docker image inspect php-test:${{ github.ref_name }}-fpm
- name: Build PHP image
uses: actions/docker-build-push@v4
with:
tags: php-test:${{github.ref_name}}
push: false
- name: PHP image details
run: docker image inspect php-test:${{github.ref_name}}
- name: Build PHP-FPM image
uses: actions/docker-build-push@v4
with:
tags: php-test-fpm:${{github.ref_name}}
file: Dockerfile-fpm
push: false
- name: PHP-FPM image details
run: docker image inspect php-test-fpm:${{github.ref_name}}