Vishal Shah 733413f58e
feat(ingest): mysql - add database_alias functionality (#4319)
Co-authored-by: Shirshanka Das <shirshanka@apache.org>
2022-03-09 09:29:58 -08:00

15 lines
389 B
YAML

version: "2"
services:
testmysql:
image: mysql:8
# image: mariadb:10.5.8 # Uncomment to run on m1
container_name: "testmysql"
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: example
ports:
- 53307:3306
volumes:
- ./setup:/setup
- ./setup/setup.sql:/docker-entrypoint-initdb.d/setup.sql