Skip to content

Commit 2b8d3c2

Browse files
dependabot[bot]DavideD
authored andcommitted
[#2270] Change docker image to container-registry.oracle.com/mysql/community-server:9.3.0
from `docker.io/mysql:9.2.0` to `container-registry.oracle.com/mysql/community-server:9.3.0` I found the registry in the official MySQL documentation: https://dev.mysql.com/doc/refman/9.3/en/docker-mysql-getting-started.html#docker-download-image The one from docker.io doesn't seem to work with testcontainers.
1 parent 14dc7d1 commit 2b8d3c2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ jobs:
5252
services:
5353
# Label used to access the service container
5454
mysql:
55-
# Docker Hub image
56-
image: mysql:9.2.0
55+
image: container-registry.oracle.com/mysql/community-server:9.3.0
5756
env:
5857
MYSQL_ROOT_PASSWORD: hreact
5958
MYSQL_DATABASE: hreact

tooling/docker/mysql.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# MySQL
22
# See https://hub.docker.com/_/mysql
3-
FROM docker.io/mysql:9.2.0
3+
FROM container-registry.oracle.com/mysql/community-server:9.3.0

0 commit comments

Comments
 (0)