Skip to content

Commit

Permalink
Merge pull request #2445 from pini-gh/pini-disambiguate
Browse files Browse the repository at this point in the history
build: disambiguate base image names
  • Loading branch information
buchdag committed May 8, 2024
2 parents fc02a5a + 5b1491f commit 8e26429
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginxproxy/docker-gen:0.13.0 AS docker-gen
FROM docker.io/nginxproxy/docker-gen:0.13.0 AS docker-gen

FROM nginxproxy/forego:0.18.1 AS forego
FROM docker.io/nginxproxy/forego:0.18.1 AS forego

# Build the final image
FROM nginx:1.26.0-alpine
FROM docker.io/library/nginx:1.26.0-alpine

ARG NGINX_PROXY_VERSION
# Add DOCKER_GEN_VERSION environment variable because
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginxproxy/docker-gen:0.13.0-debian AS docker-gen
FROM docker.io/nginxproxy/docker-gen:0.13.0-debian AS docker-gen

FROM nginxproxy/forego:0.18.1-debian AS forego
FROM docker.io/nginxproxy/forego:0.18.1-debian AS forego

# Build the final image
FROM nginx:1.26.0
FROM docker.io/library/nginx:1.26.0

ARG NGINX_PROXY_VERSION
# Add DOCKER_GEN_VERSION environment variable because
Expand Down

0 comments on commit 8e26429

Please sign in to comment.