mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Configurable dev environment * Add a bit of documentation * fixing gofmt * A bit more doc * Using variable * Adding license header * Moving LDAP_DATA variable to the default-config.mk file * Adding another docker-compose for the makefile to not brake anybody workflow * Moving dejavu to the config * Fixing docker-compose.makefile.yaml for dejavu * Adding keycloak support to the dev environment * Address PR review comments * Removing minio from default docker images * Changing the default version of mysql to the oldest supported (5.6) * Change the restart option to no for the dev environment * Fixing restart option * Reverting unneded changes * Restoring 5.7 to check if test passes * Going back to 5.6 mysql image * Fixing tests on mysql 5.6 * Skipping flaky test Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
version: '2.4'
|
|
services:
|
|
mysql:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: mysql
|
|
tmpfs: /var/lib/mysql
|
|
volumes:
|
|
- "./docker/mysql.conf.d:/etc/mysql/conf.d"
|
|
postgres:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: postgres
|
|
tmpfs: /var/lib/postgresql/data
|
|
minio:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: minio
|
|
inbucket:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: inbucket
|
|
openldap:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: openldap
|
|
elasticsearch:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: elasticsearch
|
|
dejavu:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: dejavu
|
|
keycloak:
|
|
extends:
|
|
file: docker-compose.common.yml
|
|
service: keycloak
|
|
|
|
start_dependencies:
|
|
image: mattermost/mattermost-wait-for-dep:latest
|
|
networks:
|
|
- mm-test
|
|
depends_on:
|
|
- mysql
|
|
- postgres
|
|
- minio
|
|
- inbucket
|
|
- openldap
|
|
- elasticsearch
|
|
command: postgres:5432 mysql:3306 minio:9000 inbucket:10080 openldap:389 elasticsearch:9200
|
|
|
|
networks:
|
|
mm-test:
|
|
driver: bridge
|