Skip to content

Commit

Permalink
[#349] Add podman instructions for PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
grgrzybek committed Mar 25, 2024
1 parent 8359024 commit b56246c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@

public class PostgresqlDataSourceTest extends AbstractJdbcTest {

/*
$ podman run --name pax.jdbc.postgresql -p 5432:5432 -e POSTGRES_PASSWORD=paxjdbc -d postgres
*/

@Rule
public ServerConfiguration config = new ServerConfiguration("postgresql");

Expand Down
2 changes: 1 addition & 1 deletion pax-jdbc-itest/src/test/resources/jdbc.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
pax.jdbc.postgresql.serverName = localhost
pax.jdbc.postgresql.portNumber = 5432
pax.jdbc.postgresql.databaseName = postgres
pax.jdbc.postgresql.user = paxjdbc
pax.jdbc.postgresql.user = postgres
pax.jdbc.postgresql.password = paxjdbc

pax.jdbc.mysql.serverName = localhost
Expand Down

0 comments on commit b56246c

Please sign in to comment.