mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-16 21:58:39 +00:00
15 lines
389 B
YAML
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
|