Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SeeĀ MVN Testing Errors for details.



Docker Compose

A docker compose version of the liquibase can be used like so:

Code Block
languageyml
titledocker-compose.yaml
version: '2'
services:
   liquibase:
      image: liquibase/liquibase
      container_name: liquibase
      command: ['--driver=$DRIVER', '--url=$URL', '--changeLogFile=$CHANGELOG', '--username=$USERNAME', '--password=$PASSWORD', '$CMD']
      volumes:
         - /mnt/c/Users/ktimoney/changelog:/liquibase/changelog


Using Liquibase via Docker

...