From 5ba9ff20e97ce5ad24493027d9cbd009b0882d0a Mon Sep 17 00:00:00 2001 From: Corey Date: Thu, 25 Jan 2024 11:14:39 -0800 Subject: [PATCH 1/4] refactor: Fix release docker --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99afbe3..1fa1891 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: branches: [ main, '4.4', '5.0', '6.0', '7.0' ] env: - LATEST: '6.0' + LATEST: '7.0' REGISTRY: docker.io IMAGE_NAME: ${{ github.repository }} @@ -83,7 +83,7 @@ jobs: if: env.BRANCH != env.LATEST uses: docker/build-push-action@v5 with: - platforms: linux/amd64, linux/arm64/v8, linux/ppc64le, linux/arm/v6, linux/arm/v7 + platforms: linux/amd64, linux/arm64/v8 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} From a4e6b421089f0272f613c7e645580dc9bf326647 Mon Sep 17 00:00:00 2001 From: Corey Baker Date: Thu, 25 Jan 2024 11:37:05 -0800 Subject: [PATCH 2/4] refactor: Delete extra file --- scripts/Singularity | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 scripts/Singularity diff --git a/scripts/Singularity b/scripts/Singularity deleted file mode 100644 index cef4f3b..0000000 --- a/scripts/Singularity +++ /dev/null @@ -1,5 +0,0 @@ -Bootstrap: docker -From: netreconlab/hipaa-postgres:latest - -%runscript -echo "Successfully built singularity from docker!" From 2418463768781463b1a0c47ea41ff9e904aa5feb Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 26 Jan 2024 08:16:58 -0800 Subject: [PATCH 3/4] docs: Improve README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff7210b..c795488 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ --- -A simple Mongo image built with [percona-server-mongodb](https://www.percona.com/software/mongodb/percona-server-for-mongodb). Designed for [parse-hipaa](https://github.com/netreconlab/parse-hipaa) but can be used anywhere Mongo is used. These docker images include the necessary database auditing and logging for HIPAA compliance. hipaa-mongo is derived from [percona-server-mongodb](https://hub.docker.com/r/percona/percona-server-mongodb/). +A simple Mongo image designed for [parse-hipaa](https://github.com/netreconlab/parse-hipaa) but can be used anywhere Mongo is used. These docker images include the necessary database auditing and logging for HIPAA compliance. hipaa-mongo is derived from [percona-server-mongodb](https://hub.docker.com/r/percona/percona-server-mongodb/). hipaa-mongo provides the following: - [x] Auditing & logging From f087474bea97ffc72d4b13b5ba003059810dcf04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Jun 2024 14:12:36 -0700 Subject: [PATCH 4/4] Bump docker/build-push-action from 5 to 6 (#14) Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 285ef25..99748bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,7 @@ jobs: type=ref,event=pr - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: platforms: linux/amd64, linux/arm64/v8 push: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1fa1891..e19660c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: - name: Build and push Docker image for latest release if: env.BRANCH == env.LATEST - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: platforms: linux/amd64, linux/arm64/v8 push: ${{ github.event_name != 'pull_request' }} @@ -81,7 +81,7 @@ jobs: - name: Build and push Docker image for other releases if: env.BRANCH != env.LATEST - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: platforms: linux/amd64, linux/arm64/v8 push: ${{ github.event_name != 'pull_request' }}