Skip to content

Commit

Permalink
docker ci-cd updates
Browse files Browse the repository at this point in the history
  • Loading branch information
smalho01 committed Oct 5, 2023
1 parent 299f449 commit f496fca
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 41 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/docker-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,30 @@ jobs:

- name: Checkout Repository
uses: actions/checkout@v3

with:
submodules: true

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Docker meta data
id: docker-meta-data
uses: docker/metadata-action@v4
with:
images: codexrems/pims
flavor: latest=false

- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push pims-ui Docker image
uses: docker/build-push-action@v4
- name: Build and push Server Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: codexrems/pims:REMSvExperimental
tags: codexrems/pims:experimental
labels: ${{ steps.docker-meta-data.outputs.labels }}
20 changes: 15 additions & 5 deletions .github/workflows/docker-cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker Development Image CD
name: Docker Image CD

on:
push:
Expand All @@ -12,20 +12,30 @@ jobs:

- name: Checkout Repository
uses: actions/checkout@v3

with:
submodules: true

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Docker meta data
id: docker-meta-data
uses: docker/metadata-action@v4
with:
images: codexrems/pims
flavor: latest=false

- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push pims-ui Docker image
uses: docker/build-push-action@v4
- name: Build and push Server Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: codexrems/pims:REMSvCurrent
tags: codexrems/pims:latest
labels: ${{ steps.docker-meta-data.outputs.labels }}
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
name: Docker Image CI

on:
push:
branches: [ dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:


jobs:
docker-ci:
runs-on: ubuntu-latest
steps:

- name: Checkout Repository
uses: actions/checkout@v3

with:
submodules: true

- name: Test Server Docker image Builds
run: docker build -f Dockerfile.dev .
run: docker build .
59 changes: 31 additions & 28 deletions .github/workflows/docker-tag-cd.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,41 @@
name: ci

name: Docker Tagged Image CD
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- '*'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: codexrems/pims
-
name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: true

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Docker meta data
id: docker-meta-data
uses: docker/metadata-action@v4
with:
images: codexrems/pims
flavor: latest=false

- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.docker-meta-data.outputs.tags }}
labels: ${{ steps.docker-meta-data.outputs.labels }}

0 comments on commit f496fca

Please sign in to comment.