Hi,
Thanks for checking in. I got the generateChangeLog to work. Now I am trying to get SQL files to run from the SQL directory. its not working however.
docker run -v C:/Users/Barry.Fantle/Documents/LiquiBaseDocker:/liquibase/changelog liquibase/liquibase --driver=org.postgresql.Driver --classpath=/usr/share/java/postgresql.jar --url="jdbc:postgresql://host.docker.internal:5432/Barry?currentSchema=Barry_sch" --defaultSchemaName=Barry_Sch --changeLogFile=/liquibase/changelog/dbchangelog.xml --username=postgres --password=pwd update
the changelog file looks like this..
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:pro="http://www.liquibase.org/xml/ns/pro"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-3.8.xsd http://www.liquibase.org/xml/ns/dbchangelog
<includeAll path="C:\Users\Barry.Fantle\Documents\LiquiBaseDocker\SQL\"/>
</databaseChangeLog>
Any Ideas?
Thanks
Barry