Versions Compared

Key

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

...

Code Block
languageyml
titledocker-compose-test.yml
#
# ===========LICENSE_START====================================================
#  Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
#  Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
# ============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============LICENSE_END=====================================================
#
version: '2'
services:
   mariadb:
      image: nexus3.onap.org:10001/mariadb:10.5.8
      container_name: mariadb
      hostname: mariadb
      command: ['--lower-case-table-names=1', '--wait_timeout=28800']
      env_file: config/db/db.conf
      volumes:
         - ./config/db:/docker-entrypoint-initdb.d:ro
      expose:
       - 3306
   liquibase:
      image: liquibase/liquibase
      container_name: liquibase
      hostnamedepends_on:
 liquibase
      depends_on:- mariadb
      hostname: - mariadbliquibase
      env_file: config/db/db.conf
      environment:
        MYSQL_DB: policyadmin
      volumes:
         - ./config/db:/liquibase/changelog
         - ./wait_for_it.sh:/liquibase/wait_for_it.sh
      entrypoint: ['/bin/sh', '-c']
      command: [
                 '/liquibase/wait_for_it.sh mariadb: 3306  &&
                   -- /liquibase/liquibase
                   --driver=org.mariadb.jdbc.Driver
                   --url=jdbc:mariadb://mariadb:3306/$${MYSQL_DB}
                   --changeLogFile=changelog/dbchangelog.mariadb.yaml
                   --username=$${MYSQL_USER}
                   --password=$${MYSQL_PASSWORD}
                   update'
               ]

...