mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
update hosted-app-utils to use simplified package management
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "Streamline EMR",
|
||||
"access": {
|
||||
"username": "streamline_sysuser",
|
||||
"password": "82CUF8UftjEx"
|
||||
},
|
||||
"appconfig": {
|
||||
"blockgraph": {
|
||||
"district": "StreamlineEmr",
|
||||
"name": "streamline_emr_config"
|
||||
}
|
||||
},
|
||||
"dbsync": {
|
||||
"blockgraph": {
|
||||
"district": "StreamlineEmr",
|
||||
"name": "streamline_emr_data"
|
||||
},
|
||||
"database": {
|
||||
"type": "mysql",
|
||||
"version": "8.0",
|
||||
"name": "streamline",
|
||||
"username": "root",
|
||||
"password": "streamline",
|
||||
"db_path": "/var/lib/mysql",
|
||||
"logs_path": "/var/lib/mysql/logs",
|
||||
"log_pattern": "bin.[0-9]*",
|
||||
"source": "mysql-app-db"
|
||||
}
|
||||
}
|
||||
}
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
streamline-emr:
|
||||
image: ${APP_IMAGE:-streamline-emr:latest}
|
||||
container_name: ${APP_CONTAINER:-streamline-emr}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- "${DATA_DIR:-./data}:/var/lib/mysql"
|
||||
ports:
|
||||
- "${APP_PORT:-3000}:80"
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:80"]
|
||||
timeout: 30s
|
||||
start_period: 3600s
|
||||
start_interval: 10s
|
||||
interval: 30s
|
||||
retries: 5
|
||||
|
||||
Reference in New Issue
Block a user