Skip to content

Commit 7c6ab32

Browse files
committed
[#1600] Add registry to docker command in podman.md
1 parent 6ac2fa4 commit 7c6ab32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

podman.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ required credentials and schema to run the tests:
3838
```
3939
podman run --rm --name HibernateTestingPGSQL \
4040
-e POSTGRES_USER=hreact -e POSTGRES_PASSWORD=hreact -e POSTGRES_DB=hreact \
41-
-p 5432:5432 postgres:15.2
41+
-p 5432:5432 docker.io/postgres:15.2
4242
```
4343

4444
When the database has started, you can run the tests on PostgreSQL with:
@@ -66,7 +66,7 @@ and schema to run the tests:
6666
```
6767
podman run --rm --name HibernateTestingMariaDB \
6868
-e MYSQL_ROOT_PASSWORD=hreact -e MYSQL_DATABASE=hreact -e MYSQL_USER=hreact -e MYSQL_PASSWORD=hreact \
69-
-p 3306:3306 mariadb:10.11.2
69+
-p 3306:3306 docker.io/mariadb:10.11.2
7070
```
7171

7272
When the database has started, you can run the tests on MariaDB with:
@@ -93,7 +93,7 @@ and schema to run the tests:
9393
```
9494
podman run --rm --name HibernateTestingMySQL \
9595
-e MYSQL_ROOT_PASSWORD=hreact -e MYSQL_DATABASE=hreact -e MYSQL_USER=hreact -e MYSQL_PASSWORD=hreact \
96-
-p 3306:3306 mysql:8.0.32
96+
-p 3306:3306 docker.io/mysql:8.0.32
9797
```
9898

9999
When the database has started, you can run the tests on MySQL with:
@@ -120,7 +120,7 @@ configured to run the tests:
120120
```
121121
podman run --rm --name=HibernateTestingCockroachDB \
122122
--hostname=roachrr1 -p 26257:26257 -p 8080:8080 \
123-
cockroachdb/cockroach:v22.1.9 start-single-node --insecure
123+
docker.io/cockroachdb/cockroach:v22.1.9 start-single-node --insecure
124124
```
125125

126126
Some of tests needs temporary tables and because this is an experimental feature in

0 commit comments

Comments
 (0)