Skip to content

Commit 9d720ec

Browse files
committed
Fix WordPress 6.9-RC3 Docker image tag and source
The RC tags use the `beta-` prefix and aren't mirrored to ECR. Changes: - Use correct tag format `beta-6.9-RC3` - Switch to Docker Hub since ECR doesn't mirror beta/RC tags
1 parent 04dc8ed commit 9d720ec

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ common_params:
1717
# - '6.4'
1818
# - '6.5'
1919
# - '6.6'
20-
- '6.9-RC3'
20+
- 'beta-6.9-RC3'
2121

2222
steps:
2323
#

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
context: .
55
dockerfile: wordpress.Dockerfile
66
args:
7-
WORDPRESS_VERSION: ${WORDPRESS_VERSION:-6.9-RC3}
7+
WORDPRESS_VERSION: ${WORDPRESS_VERSION:-beta-6.9-RC3}
88
container_name: 'wordpress'
99
ports:
1010
- '80:80'

wordpress.Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
ARG WORDPRESS_VERSION="6.9-RC3"
1+
ARG WORDPRESS_VERSION="beta-6.9-RC3"
22

3-
FROM public.ecr.aws/docker/library/wordpress:${WORDPRESS_VERSION}
3+
# Using Docker Hub directly since ECR doesn't mirror beta/RC tags
4+
FROM docker.io/library/wordpress:${WORDPRESS_VERSION}
45

56
RUN apt-get update \
67
&& apt-get install -y wget gpg

0 commit comments

Comments
 (0)