I have the following piece of code:
public static PostgreSQLContainer<?> postgreDBContainer = new PostgreSQLContainer<>("postgres:12")
.withInitScript("init-database-test.sql")
.withUsername("dba")
.withPassword("dba");
Inside the init script, I'm creating some tablespaces and associating the folders:
CREATE TABLESPACE tsd01 OWNER dba LOCATION '/tsd01';
CREATE TABLESPACE tsi01 OWNER dba LOCATION '/tsi01';
CREATE TABLESPACE tsisecurity01 OWNER dba LOCATION '/tsisecurity01';
These folders for the tablespaces should be created before the init script runs. How do I can able to do that?