Skip to content

Commit

Permalink
cicd: use quay.io/projectquay/golang image
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Zmeskal <jzmeskal@redhat.com>
  • Loading branch information
Jan Zmeskal authored and ldelossa committed May 11, 2021
1 parent 30f8696 commit c1895c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
release-binaries:
name: Create Release Binaries
runs-on: 'ubuntu-latest'
container: docker.io/library/golang:1.15
container: quay.io/projectquay/golang:1.15
needs: release-archive
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
tidy:
name: Tidy
runs-on: ubuntu-latest
container: quay.io/claircore/golang:1.15
container: quay.io/projectquay/golang:1.15
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -68,7 +68,7 @@ jobs:
tests:
name: Tests
runs-on: ubuntu-latest
container: quay.io/claircore/golang:${{ matrix.go }}
container: quay.io/projectquay/golang:${{ matrix.go }}
env:
POSTGRES_CONNECTION_STRING: "host=clair-db port=5432 user=clair dbname=clair sslmode=disable"
RABBITMQ_CONNECTION_STRING: "amqp://guest:guest@clair-rabbitmq:5672/"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM quay.io/claircore/golang:1.15 AS build
FROM quay.io/projectquay/golang:1.15 AS build
WORKDIR /build/
ADD . /build/
ARG CLAIR_VERSION=dev
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ services:

notifier:
container_name: clair-notifier
image: quay.io/claircore/golang:1.15.2
image: quay.io/projectquay/golang:1.15.2
volumes:
- "./:/src/clair/"
environment:
Expand All @@ -93,7 +93,7 @@ services:
# this should only be created and deleted via the make target "local-dev-notifier-test"
notifier-test-mode:
container_name: clair-notifier
image: quay.io/claircore/golang:1.15.2
image: quay.io/projectquay/golang:1.15.2
volumes:
- "./:/src/clair/"
environment:
Expand All @@ -112,7 +112,7 @@ services:

indexer:
container_name: clair-indexer
image: quay.io/claircore/golang:1.15.2
image: quay.io/projectquay/golang:1.15.2
volumes:
- "./:/src/clair/"
environment:
Expand All @@ -134,7 +134,7 @@ services:
## allows layer fetching over localhost
indexer-quay:
container_name: clair-indexer
image: quay.io/claircore/golang:1.15.2
image: quay.io/projectquay/golang:1.15.2
volumes:
- "./:/src/clair/"
environment:
Expand All @@ -155,7 +155,7 @@ services:

matcher:
container_name: clair-matcher
image: quay.io/claircore/golang:1.15.2
image: quay.io/projectquay/golang:1.15.2
volumes:
- "./:/src/clair/"
environment:
Expand Down

0 comments on commit c1895c4

Please sign in to comment.