From cc0ba0e5b13e77de88f96180e05f5ad99b27c5f5 Mon Sep 17 00:00:00 2001 From: jsmith Date: Wed, 4 May 2022 14:33:04 +0000 Subject: [PATCH] Add 'maria_compose.yml' --- maria_compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 maria_compose.yml 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