From ce70bbbb2e3af11d215465ab50a8adc239606392 Mon Sep 17 00:00:00 2001 From: Administrator Date: Mon, 10 Oct 2022 20:24:12 +0300 Subject: [PATCH] sentry --- .deploy-infra/deploy-dev.yaml | 14 +++++++------- .gitlab-ci.yml | 2 ++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.deploy-infra/deploy-dev.yaml b/.deploy-infra/deploy-dev.yaml index db95faa..0999a89 100644 --- a/.deploy-infra/deploy-dev.yaml +++ b/.deploy-infra/deploy-dev.yaml @@ -25,7 +25,7 @@ services: order: start-first postgres: - image: postgres + image: postgres:15rc2-alpine3.16 volumes: - /sprint-data/postgres-data:/var/lib/postgresql/data environment: @@ -43,7 +43,7 @@ services: order: start-first mongo: - image: mongo + image: mongo:6.0.2 volumes: - /sprint-data/mongo:/data/db environment: @@ -79,7 +79,7 @@ services: order: start-first redis: - image: redis + image: redis:alpine3.16 ports: - "6379:6379" command: redis-server --requirepass $REDIS_PASSWORD_DEV @@ -110,7 +110,7 @@ services: order: start-first minio: - image: bitnami/minio + image: bitnami/minio:2022.10.8 volumes: - minio_data:/data environment: @@ -130,7 +130,7 @@ services: order: start-first grafana: - image: grafana/grafana + image: grafana/grafana:9.1.7-ubuntu volumes: - /sprint-data/grafana:/var/lib/grafana ports: @@ -146,7 +146,7 @@ services: order: start-first memcached: - image: memcached + image: memcached:alpine3.16 ports: - "11211:11211" deploy: @@ -163,7 +163,7 @@ services: order: start-first sentry: - image: sentry + image: sentry:9.1.2 volumes: - /sprint-data/sentry:/var/lib/sentry/files environment: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e7da1d..1190e9e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,8 @@ stages: - mkdir /sprint-data/mongo || true - mkdir /sprint-data/grafana || true - chmod 777 /sprint-data/grafana + - mkdir /sprint-data/sentry || true + - chmod 777 /sprint-data/sentry build: stage: build