mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
410 B
14 lines
410 B
2 years ago
|
version: "3.5"
|
||
|
|
||
|
# https://github.com/docker-library/mysql/issues/149
|
||
|
# disabling default sql-mode set to only_full_group_by
|
||
|
services:
|
||
|
xc-mysql-sakila-db:
|
||
|
network_mode: host
|
||
|
image: mysql:8.0
|
||
|
command: mysqld --sql_mode=""
|
||
|
restart: always
|
||
|
environment:
|
||
|
MYSQL_ROOT_PASSWORD: password
|
||
|
volumes:
|
||
2 years ago
|
- ../../../packages/nocodb/tests/mysql-sakila-db:/docker-entrypoint-initdb.d
|