20 lines
539 B
YAML
20 lines
539 B
YAML
version: '3.4'
|
|
|
|
networks:
|
|
medicine-network:
|
|
external: true
|
|
|
|
services:
|
|
notification:
|
|
restart: "always"
|
|
container_name: "medicine-notification"
|
|
image: docker.med-logic.ru/medicine-notification:latest
|
|
networks:
|
|
- medicine-network
|
|
expose:
|
|
- 80
|
|
environment:
|
|
DATABASE_URL: postgres://postgres:password@medicine-postgres:5432/medicine_notification
|
|
REDIS_HOST: medicine-redis
|
|
SENTRY_DNS: https://f177afb8b8a44800a7ac5f14fb4a7666:b5de0145097e45ed8b85807fd9d10167@sentry.med-logic.ru/15
|