Commit 3eb25bc3 authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

Merge branch '18-add-registry-name-in-all-docker-images' into 'master'

Resolve "Add registry name in all Docker images"

Closes #18

See merge request to-be-continuous/tools/vault-secrets-provider!61
parents 86944db4 b28a7ae6
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ variables:

# this job tests the Docker image on a remote Vault server (configurable)
test-on-remote:
  image: "curlimages/curl"
  image: "registry.hub.docker.com/curlimages/curl"
  services:
    - name: "$DOCKER_SNAPSHOT_IMAGE"
      alias: "vault-secrets-provider"
@@ -63,7 +63,7 @@ test-on-remote:
# this job tests the Docker image on a local Vault server using the Vault server image
# See: https://hub.docker.com/_/vault
test-on-local:
  image: "dwdraju/alpine-curl-jq"
  image: "registry.hub.docker.com/dwdraju/alpine-curl-jq"
  services:
    - name: "$DOCKER_SNAPSHOT_IMAGE"
      alias: "vault-secrets-provider"
+1 −1
Original line number Diff line number Diff line
FROM busybox:1.36.0 AS busybox
FROM registry.hub.docker.com/library/busybox:1.36.0 AS busybox

FROM scratch