3
0
Fork 0

add remd and address service

This commit is contained in:
Ilya Mukhortov 2026-09-09 15:45:17 +10:00
parent dcc132a969
commit fdea796946
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,22 @@
networks:
medicine-network:
external: true
services:
address-service:
container_name: medicine-address-service
image: medlogic/address-service:latest
restart: always
env_file:
- ../.env
depends_on:
postgres:
condition: service_healthy
networks:
- medicine-network
logging:
driver: "json-file"
options:
max-size: "5mb"
max-file: "10"

View File

@ -0,0 +1,26 @@
volumes:
medicine-remd-public-data:
name: medicine-remd-public-data
networks:
medicine-network:
external: true
services:
medicine-remd:
container_name: medicine-remd
image: medlogic/medicine-remd:latest
restart: always
env_file:
- ../.env
- .env
volumes:
- medicine-remd-public-data:/app/public
networks:
- medicine-network
logging:
driver: "json-file"
options:
max-size: "5mb"
max-file: "10"