version: '2.1'

services:
  mysql:
    logging:
      driver: none
    image: registry-intl.cn-hongkong.aliyuncs.com/wkns/mysql:5.7.31
    expose:
      - 3306
    environment:
      MYSQL_ALLOW_EMPTY_PASSWORD: "1"

  mysql8:
    logging:
      driver: none
    image: registry-intl.cn-hongkong.aliyuncs.com/wkns/mysql:8
    command: --default-authentication-plugin=mysql_native_password --log_bin_trust_function_creators=1
    expose:
      - 3306
    environment:
      MYSQL_ALLOW_EMPTY_PASSWORD: "1"

  init:
    build:
      context: .
    image: test-init
    command: make test-init

  patch:
    build:
      context: .
    image: test-patch
    command: make test-patch

  sync:
    build:
      context: .
    image: sync
    command: make run-sync

  release:
    build:
      context: .
    image: release
    command: make run-release
    volumes:
      - ./:/out
