* Improve e2etests readme, remove unused apt install * Add testing E2E Tests MultiOS * Get rid of deprecation warning * Smart selection of docker network driver for different OSes * Unify makefile invocation for windows as well * Tune JVM for ES and Keycloak * fix: Made required changes to run locally on arm MacOS * fix: FIxed network command and removed dashboard node user as it is not needed * fix: make dashboard work for Mac * Make runs without dashboard work again, make BROWSE tunable and document it --------- Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Antonis Stamatiou <stamatiou.antonis@gmail.com>
37 строки
801 B
YAML
37 строки
801 B
YAML
version: '2.4'
|
|
services:
|
|
mysql:
|
|
image: mattermostdevelopment/mirrored-mysql:5.7.12
|
|
restart: always
|
|
environment:
|
|
MYSQL_ROOT_HOST: "%"
|
|
MYSQL_ROOT_PASSWORD: mostest
|
|
MYSQL_PASSWORD: mostest
|
|
MYSQL_USER: mmuser
|
|
MYSQL_DATABASE: mattermost_test
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
|
interval: 5s
|
|
timeout: 10s
|
|
retries: 3
|
|
tmpfs: /var/lib/mysql
|
|
volumes:
|
|
- "./docker/mysql.conf.d:/etc/mysql/conf.d"
|
|
networks:
|
|
default:
|
|
aliases:
|
|
- mysql
|
|
|
|
start_dependencies:
|
|
image: mattermost/mattermost-wait-for-dep:latest
|
|
depends_on:
|
|
- mysql
|
|
command: mysql:3306
|
|
networks:
|
|
default:
|
|
|
|
networks:
|
|
default:
|
|
name: ${COMPOSE_PROJECT_NAME}
|
|
external: true
|