17 lines
359 B
YAML
17 lines
359 B
YAML
networks:
|
|
medicine-network:
|
|
external: true
|
|
|
|
services:
|
|
tfoms-patient:
|
|
container_name: tfoms-patient
|
|
restart: "always"
|
|
image: tfoms-patient:latest
|
|
env_file:
|
|
- ../.env
|
|
- .env
|
|
environment:
|
|
- SQLALCHEMY_DATABASE_URI=postgresql://postgres:password@medicine-postgres/tfoms_patient
|
|
networks:
|
|
- medicine-network
|