Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add registry to docker commands in podman.md #1601

Merged
merged 1 commit into from
Apr 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions podman.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ required credentials and schema to run the tests:
```
podman run --rm --name HibernateTestingPGSQL \
-e POSTGRES_USER=hreact -e POSTGRES_PASSWORD=hreact -e POSTGRES_DB=hreact \
-p 5432:5432 postgres:15.2
-p 5432:5432 docker.io/postgres:15.2
```

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

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

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

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