Fix references to docker images for some databases

I just assumed some paths but didn't check them previously.
This commit is contained in:
Eli Ribble 2026-05-14 16:06:42 +00:00
parent 9f722d9c05
commit 30cc7321c5
No known key found for this signature in database

View file

@ -12,7 +12,7 @@ services:
- ./testdata/init/postgres:/docker-entrypoint-initdb.d - ./testdata/init/postgres:/docker-entrypoint-initdb.d
mysql: mysql:
image: docker.io/library/mysql/mysql-server:8.0.27 image: docker.io/mysql:8.0.27
command: ['--default-authentication-plugin=mysql_native_password', '--log_bin_trust_function_creators=1'] command: ['--default-authentication-plugin=mysql_native_password', '--log_bin_trust_function_creators=1']
restart: always restart: always
environment: environment:
@ -38,7 +38,7 @@ services:
- ./testdata/init/mysql:/docker-entrypoint-initdb.d - ./testdata/init/mysql:/docker-entrypoint-initdb.d
cockroach: cockroach:
image: docker.io/library/cockroachdb/cockroach-unstable:v23.1.0-rc.2 image: docker.io/cockroachdb/cockroach:v23.1.0
environment: environment:
- COCKROACH_USER=jet - COCKROACH_USER=jet
- COCKROACH_PASSWORD=jet - COCKROACH_PASSWORD=jet