mirror of
https://github.com/Sudo-JHare/FhirPad.git
synced 2025-06-15 20:49:59 +00:00
13 lines
300 B
YAML
13 lines
300 B
YAML
version: '3.8'
|
|
services:
|
|
fhirpad:
|
|
build: .
|
|
ports:
|
|
- "5009:5009"
|
|
volumes:
|
|
- ./instance:/app/instance
|
|
- ./uploads:/app/uploads
|
|
environment:
|
|
- FLASK_APP=app
|
|
- FLASK_ENV=development
|
|
command: ["flask", "run", "--host=0.0.0.0", "--port=5009"] |