Skip to content

Commit

Permalink
Fixed docker image destination
Browse files Browse the repository at this point in the history
Signed-off-by: jayonthenet <[email protected]>
  • Loading branch information
jayonthenet committed Aug 20, 2024
1 parent a494802 commit 6e028f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.19

LABEL org.opencontainers.image.source https://github.com/humanitec-tutorials/5min-idp
LABEL org.opencontainers.image.source=https://github.com/InternalDeveloperPlatform/PocketIDP

RUN apk add --no-cache \
bash curl git jq bash-completion docker-cli && \
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IMG_TAG ?= latest
IMG ?= ghcr.io/humanitec-tutorials/5min-idp:$(IMG_TAG)
IMG ?= ghcr.io/internaldeveloperplatform/pocketidp:$(IMG_TAG)
PLATFORM ?= linux/amd64,linux/arm64

# Build the 5min-idp image
Expand Down Expand Up @@ -27,7 +27,7 @@ lint: lint-init

# Test the 5min-idp
test: build check-image
docker run --rm -i -h 5min-idp --name 5min-idp \
docker run --rm -i -h pocketidp --name 5min-idp \
-e HUMANITEC_ORG \
-v hum-5min-idp:/state \
-v $(HOME)/.humctl:/root/.humctl \
Expand All @@ -37,7 +37,7 @@ test: build check-image

# Run the locally built image
run-local: build
docker run --rm -it -h 5min-idp --name 5min-idp \
docker run --rm -it -h pocketidp --name 5min-idp \
-e HUMANITEC_ORG \
-e HUMANITEC_SERVICE_USER \
-e TLS_CA_CERT \
Expand All @@ -50,7 +50,7 @@ run-local: build
$(IMG)
# Run the locally built image and don't delete the state
run-local-persistent: build
docker run -it -h 5min-idp --name 5min-idp \
docker run -it -h pocketidp --name 5min-idp \
-e HUMANITEC_ORG \
-e HUMANITEC_SERVICE_USER \
-e TLS_CA_CERT \
Expand Down

0 comments on commit 6e028f6

Please sign in to comment.