mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 10:41:32 +00:00
30 lines
708 B
YAML
Executable File
30 lines
708 B
YAML
Executable File
services:
|
|
streamline-emr:
|
|
image: streamline-emr:latest
|
|
container_name: streamline-emr
|
|
restart: unless-stopped
|
|
volumes:
|
|
- "${DATA_DIR:-./data}:/var/lib/mysql"
|
|
ports:
|
|
- "${APP_PORT:-3000}:80"
|
|
command: ["sh", "-c", "composer install && php artisan migrate"]
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:80"]
|
|
timeout: 30s
|
|
start_period: 3600s
|
|
start_interval: 10s
|
|
interval: 30s
|
|
retries: 5
|
|
networks:
|
|
- streamline
|
|
statistics:
|
|
image: statistics:latest
|
|
container_name: statistics
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- streamline-emr
|
|
networks:
|
|
- streamline
|
|
networks:
|
|
streamline:
|