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
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b9d8c82f19 | ||
|
|
d2a4558a39 | ||
|
|
605702f19f | ||
|
|
d04fd97791 | ||
|
|
d8da3f11eb | ||
|
|
9f5573b5c9 | ||
|
|
b9c59fede7 | ||
|
|
ae235109ab |
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "streamline-emr",
|
"name": "streamline-emr",
|
||||||
"org": "streamline",
|
"org": "streamline",
|
||||||
"version": "3.2",
|
"version": "3.4",
|
||||||
"platforms": [
|
"platforms": [
|
||||||
"linux/arm64"
|
"linux/arm64"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
FROM streamlinehealth/streamline:signalytic
|
FROM streamline:signalytic_latest
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
#! /usr/bin/env python3
|
#! /usr/bin/env python3
|
||||||
|
|
||||||
import sys, os, argparse, json, shutil, tempfile, subprocess, traceback
|
import sys, os, argparse, json, shutil, subprocess, traceback
|
||||||
|
|
||||||
def run_script(script_path: str) -> int:
|
def run_script(script_path: str) -> int:
|
||||||
"""
|
"""
|
||||||
@@ -45,7 +45,8 @@ def handle_start(src_dir, install_path):
|
|||||||
shutil.copytree(src_dir, install_path, dirs_exist_ok=True)
|
shutil.copytree(src_dir, install_path, dirs_exist_ok=True)
|
||||||
|
|
||||||
# start application
|
# start application
|
||||||
run_script(f'{install_path}/start')
|
if run_script(f'{install_path}/start') != 0:
|
||||||
|
return 1
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
@@ -67,7 +68,8 @@ def handle_stop(install_path: str):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
# stop application
|
# stop application
|
||||||
run_script(f'{install_path}/stop')
|
if run_script(f'{install_path}/stop') != 0:
|
||||||
|
return 1
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
@@ -118,7 +120,7 @@ def uninstall_app(args: argparse.Namespace, install_path) -> int:
|
|||||||
subprocess.check_output(stop_path)
|
subprocess.check_output(stop_path)
|
||||||
|
|
||||||
# reset vols, networks
|
# reset vols, networks
|
||||||
subprocess.check_output(['docker', 'compose', f'-f {install_path}/docker-compose.yml', 'down', '-v'])
|
subprocess.check_output(['docker', 'compose', '-f', f'{install_path}/docker-compose.yml', 'down', '-v'])
|
||||||
|
|
||||||
if os.path.exists(install_path):
|
if os.path.exists(install_path):
|
||||||
shutil.rmtree(install_path)
|
shutil.rmtree(install_path)
|
||||||
@@ -129,11 +131,7 @@ def uninstall_app(args: argparse.Namespace, install_path) -> int:
|
|||||||
return rval
|
return rval
|
||||||
|
|
||||||
# script constants
|
# script constants
|
||||||
utils_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
|
working_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
temp_dir = tempfile.mkdtemp()
|
|
||||||
build_dir = os.path.join(temp_dir, 'build')
|
|
||||||
staging_dir = os.path.join(temp_dir, 'staging')
|
|
||||||
working_dir = working_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
||||||
src_path = os.path.join(working_dir, 'src')
|
src_path = os.path.join(working_dir, 'src')
|
||||||
CONFIG_JSON = os.path.join(working_dir, 'config.json')
|
CONFIG_JSON = os.path.join(working_dir, 'config.json')
|
||||||
|
|
||||||
|
|||||||
+1
-21
@@ -1,22 +1,8 @@
|
|||||||
services:
|
services:
|
||||||
streamline-emr:
|
streamline-emr:
|
||||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/streamline-emr/arm64:3.2
|
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/streamline-emr/arm64:3.4
|
||||||
container_name: streamline-emr
|
container_name: streamline-emr
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.http.routers.streamline.rule=Host(`streamline.signalytic.lan`)"
|
|
||||||
- "traefik.http.routers.streamline.entrypoints=websecure"
|
|
||||||
- "traefik.http.routers.streamline.tls=true"
|
|
||||||
- "traefik.http.routers.streamline.priority=2"
|
|
||||||
- "traefik.http.routers.streamline.service=streamline"
|
|
||||||
- "traefik.http.routers.streamline.middlewares=streamline-https"
|
|
||||||
- "traefik.http.services.streamline.loadbalancer.server.port=80"
|
|
||||||
- "traefik.http.middlewares.streamline-https.headers.customrequestheaders.X-Forwarded-Proto=https"
|
|
||||||
- "traefik.http.middlewares.streamline-https.headers.customrequestheaders.X-Forwarded-Port=443"
|
|
||||||
- "traefik.http.middlewares.streamline-https.headers.sslProxyHeaders.X-Forwarded-Proto=https"
|
|
||||||
- "traefik.docker.network=signalytic-proxy"
|
|
||||||
- "traefik.http.middlewares.streamline-https.headers.contentSecurityPolicy=upgrade-insecure-requests"
|
|
||||||
volumes:
|
volumes:
|
||||||
- "${DATA_DIR:-./data}:/var/lib/mysql"
|
- "${DATA_DIR:-./data}:/var/lib/mysql"
|
||||||
ports:
|
ports:
|
||||||
@@ -30,8 +16,6 @@ services:
|
|||||||
start_interval: 10s
|
start_interval: 10s
|
||||||
interval: 30s
|
interval: 30s
|
||||||
retries: 5
|
retries: 5
|
||||||
networks:
|
|
||||||
- signalytic-proxy
|
|
||||||
|
|
||||||
statistics:
|
statistics:
|
||||||
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/statistics/arm64:3.1
|
image: registry.gitlab.com/signalytic/client-external/streamline/streamline-emr/statistics/arm64:3.1
|
||||||
@@ -63,7 +47,3 @@ services:
|
|||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
||||||
networks:
|
|
||||||
signalytic-proxy:
|
|
||||||
external: true
|
|
||||||
Reference in New Issue
Block a user