14 lines
316 B
YAML
14 lines
316 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
mermsemr-core:
|
|
image: registry.chiefsoft.net/merms-core-backend-flask:latest
|
|
build: ./services/web
|
|
command: python manage.py run -h 0.0.0.0
|
|
volumes:
|
|
- ./services/web/:/usr/src/app/
|
|
ports:
|
|
- "${APP_PORT:-14700}:5000"
|
|
env_file:
|
|
- ./.env.production
|