Skip to content

BitskiCo/argocd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Argo CD

Docker Repository on Quay

Custom Docker image for Argo CD.

Prerequisites

Install Docker and configure BuildKit:

docker buildx create --use --name buildkit

Build

Build a local image:

docker buildx build --tag quay.io/bitski/argocd:latest --load .

Startup Test

Test that the image starts:

docker run --rm -it quay.io/bitski/argocd:latest argocd-repo-server

Publish

Login Quay.io:

docker login quay.io

Then build and publish a multi-platform image:

docker buildx build \
  --platform linux/amd64,linux/arm64 \
  --tag quay.io/bitski/argocd:latest \
  --push .

To use the Red Hat base image (only for AMD64), login to registry.redhat.io with your Red Hat credentials:

docker registry.redhat.io

Then build and publish the image:

docker buildx build \
  --platform linux/amd64 \
  --build-arg ARGOCD_BASE=registry.redhat.io/openshift-gitops-1/argocd-rhel8:v1.5.2-1 \
  --tag quay.io/bitski/argocd:rhel8 \
  --push .

About

Custom Argo CD image

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors