mattermost/server/build/gitlab-dc.postgres.yml
mvitale1989 0445d8348c
CLD-5698 - Add e2e smoketests (#23590)
* Prepare: run E2E smoketests with GitHub actions (#23301)
* Port E2E testing scripts from cypress-ui-automation
* Move server to docker-compose, move E2E images to ecrpublic
* Integrate General channel renaming, fixes
* Add local automation-dashboard
 Add readme
* Add E2E smoketests
* Bump postgres to 12
* Fully rely on mattermostdevelopment images

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Antonis Stamatiou <stamatiou.antonis@gmail.com>
2023-06-12 11:56:33 +02:00

100 lines
2.1 KiB
YAML

version: '2.4'
services:
postgres:
image: mattermostdevelopment/mirrored-postgres:12
restart: always
environment:
POSTGRES_USER: mmuser
POSTGRES_PASSWORD: mostest
POSTGRES_DB: mattermost_test
command: postgres -c 'config_file=/etc/postgresql/postgresql.conf'
volumes:
- "./docker/postgres.conf:/etc/postgresql/postgresql.conf"
healthcheck:
test: [ "CMD", "pg_isready", "-h", "localhost" ]
interval: 10s
timeout: 15s
retries: 12
networks:
default:
aliases:
- postgres
minio:
extends:
file: gitlab-dc.common.yml
service: minio
networks:
default:
aliases:
- minio
inbucket:
extends:
file: gitlab-dc.common.yml
service: inbucket
networks:
default:
aliases:
- inbucket
openldap:
extends:
file: gitlab-dc.common.yml
service: openldap
networks:
default:
aliases:
- openldap
elasticsearch:
extends:
file: gitlab-dc.common.yml
service: elasticsearch
networks:
default:
aliases:
- elasticsearch
dejavu:
extends:
file: gitlab-dc.common.yml
service: dejavu
networks:
default:
aliases:
- dejavu
keycloak:
extends:
file: gitlab-dc.common.yml
service: keycloak
prometheus:
extends:
file: gitlab-dc.common.yml
service: prometheus
networks:
default:
aliases:
- prometheus
grafana:
extends:
file: gitlab-dc.common.yml
service: grafana
networks:
default:
aliases:
- grafana
start_dependencies:
image: mattermost/mattermost-wait-for-dep:latest
depends_on:
- postgres
- minio
- inbucket
- openldap
- elasticsearch
- prometheus
- grafana
command: postgres:5432 minio:9000 inbucket:9001 openldap:389 elasticsearch:9200 prometheus:9090 grafana:3000
networks:
default:
networks:
default:
external:
name: ${COMPOSE_PROJECT_NAME}