12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # Ignored by docker compose, used by devservices
- x-sentry-service-config:
- version: 0.1
- service_name: sentry
- dependencies:
- snuba:
- description: Service that provides fast aggregation and query capabilities on top of Clickhouse
- remote:
- repo_name: snuba
- branch: master
- repo_link: git@github.com:getsentry/snuba.git
- mode: containerized
- relay:
- description: Service event forwarding and ingestion service
- remote:
- repo_name: relay
- branch: master
- repo_link: git@github.com:getsentry/relay.git
- mode: containerized
- postgres:
- description: Database used to store Sentry data
- modes:
- default: [snuba, postgres, relay]
- services:
- postgres:
- image: ghcr.io/getsentry/image-mirror-library-postgres:14-alpine
- environment:
- POSTGRES_HOST_AUTH_METHOD: trust
- POSTGRES_DB: sentry
- command:
- [
- postgres,
- -c,
- wal_level=logical,
- -c,
- max_replication_slots=1,
- -c,
- max_wal_senders=1,
- ]
- networks:
- - devservices
- volumes:
- - postgres-data:/var/lib/postgresql/data
- ports:
- - 5432:5432
- extra_hosts:
- - host.docker.internal:host-gateway
- networks:
- devservices:
- name: devservices
- volumes:
- postgres-data:
|