diff --git a/maria_compose.yml b/maria_compose.yml new file mode 100644 index 0000000..1f6af3e --- /dev/null +++ b/maria_compose.yml @@ -0,0 +1,19 @@ +version: '3.7' + +services: + maria-db: + image: mariadbimageforyourthing + container_name: maria-db + expose: + - "3306" + ports: + - "3306:3306" + environment: + + liquibase: + image: liquibaseimagehere + environment: + - CHANGELOGFILE=/changelog/rules-mgmt-api.maria-main.yml + - LIQ_CMD=update + depends_on: + - maria-db \ No newline at end of file