Trying to set relative path to mount files, but it adding to path folder in which he is(compose file).
liquibase:
image: liquibase/liquibase
volumes:
- ./resources/changelog:/liquibase/changelog
command: --changeLogFile=master.xml --url=jdbc:postgresql://postgres:5432/postgres?autoReconnect=true&useSSL=false --username=postgres --password=password update
depends_on:
- postgres
networks:
- my_network
With ./ path: app\docker\resources\changelog here extra folder 'docker', there is docker-compose file.
I expect app\resources\changelog, how I can set correct relative path?