Skip to content

Commit 61f0989

Browse files
authored
Fix Docker images build error when using Podman Compose (#442)
This PR resolves the following error when using podman-compose: Error: short-name "caddy:2.6.4-alpine" did not resolve to an alias and no unqualified-search registries are defined in "/etc/containers/registries.conf" We also bump the Docker image for Caddy and Alpine Linux.
1 parent b9ade4a commit 61f0989

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ services:
1212
- "8889:8888"
1313

1414
httpbin:
15-
image: kennethreitz/httpbin:latest
15+
image: docker.io/kennethreitz/httpbin:latest
1616
ports:
1717
- "8080:80"
1818

1919
caddyhttpbin:
20-
image: caddy:2.6.4-alpine
20+
image: docker.io/caddy:2.8.4-alpine
2121
# In GitHub Actions we want to access the files created
2222
# by Caddy. However, in Linux these end up being owned by root
2323
# because the container by default runs using the root user

test/docker/tinyproxy-auth/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.17.2
1+
FROM docker.io/alpine:3.20.1
22

33
RUN apk add --no-cache \
44
tinyproxy

test/docker/tinyproxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.17.2
1+
FROM docker.io/alpine:3.20.1
22

33
RUN apk add --no-cache \
44
tinyproxy

0 commit comments

Comments
 (0)