21 lines
421 B
YAML
21 lines
421 B
YAML
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
tfoms-patient:
|
|
container_name: tfoms-patient
|
|
restart: "always"
|
|
image: docker.med-logic.ru/tfoms-patient:latest
|
|
environment:
|
|
- SENTRY_SITE=${SENTRY_SITE}
|
|
- SQLALCHEMY_DATABASE_URI=postgresql://postgres:password@medicine-stack-postgres/tfoms_patient
|
|
ports:
|
|
- "880:80"
|
|
networks:
|
|
- medicine-network
|
|
|
|
networks:
|
|
medicine-network:
|
|
external: true
|