mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
Compare commits
8
Commits
v2.5
...
develop-v2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
69c5fd8fe2 | ||
|
|
fdc5645341 | ||
|
|
f14359b3cd | ||
|
|
60021ae47a | ||
|
|
3d2844a59b | ||
|
|
2c1067c1ae | ||
|
|
113d8ba7a8 | ||
|
|
9857664bfd |
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "streamline-emr",
|
||||
"org": "streamline",
|
||||
"version": "2.5",
|
||||
"version": "2.6",
|
||||
"platforms": [
|
||||
"linux/arm64"
|
||||
]
|
||||
|
||||
+8
-17
@@ -1,12 +1,12 @@
|
||||
services:
|
||||
streamline-emr:
|
||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/streamline-emr/arm64:2.5
|
||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/streamline-emr/arm64:2.6
|
||||
container_name: streamline-emr
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- "${DATA_DIR:-./data}:/var/lib/mysql"
|
||||
- ./data:/var/lib/mysql
|
||||
ports:
|
||||
- "${APP_PORT:-3000}:80"
|
||||
- "3000:80"
|
||||
command: |
|
||||
php artisan migrate --force && exec php artisan serve --host=0.0.0.0 --port=80
|
||||
healthcheck:
|
||||
@@ -18,30 +18,21 @@ services:
|
||||
retries: 5
|
||||
|
||||
statistics:
|
||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/statistics/arm64:2.5
|
||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/statistics/arm64:2.6
|
||||
container_name: streamline-emr-statistics
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
SERVER: https://impactdashboard.streamlinehealth.tech/
|
||||
SERVER_ENDPOINT: signalytic/receive_data
|
||||
SERVER_STATUS_URL: signalytic/status
|
||||
DB_HOST: streamline-emr
|
||||
DB_DATABASE: streamline
|
||||
DB_USERNAME: root
|
||||
DB_PASSWORD: streamline
|
||||
REDIS_HOST: streamline-emr-redis
|
||||
REDIS_PORT: 6379
|
||||
REDIS_TTL: 432000
|
||||
env_file:
|
||||
- resources/statistics/.env
|
||||
depends_on:
|
||||
- streamline-emr
|
||||
- redis
|
||||
|
||||
redis:
|
||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/redis/arm64:2.5
|
||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/redis/arm64:2.6
|
||||
container_name: streamline-emr-redis
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- "${REDIS_DATA_DIR:-./redis_data}:/data"
|
||||
- ./redis_data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 30s
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
SERVER=https://impactdashboard.streamlinehealth.tech/
|
||||
SERVER_ENDPOINT=signalytic/receive_data
|
||||
SERVER_STATUS_URL=signalytic/status
|
||||
DB_HOST=streamline-emr
|
||||
DB_DATABASE=streamline
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=streamline
|
||||
REDIS_HOST=streamline-emr-redis
|
||||
REDIS_PORT=6379
|
||||
REDIS_TTL=432000
|
||||
Reference in New Issue
Block a user