Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Jan 22, 2025
1 parent 5a41390 commit 375b8a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

## Integration [![Docker Pulls](https://img.shields.io/docker/pulls/oneteme/inspect-app?style=social)](https://hub.docker.com/r/oneteme/inspect-app)
```SH
docker run --pull=always -d -e INSPECT_SERVER_URL="{{URL}}" -p 80:80 oneteme/inspect-app:{{version}}
docker run --pull=always -d --name inspect-app -e INSPECT_SERVER_URL="{{URL}}" -p 80:80 oneteme/inspect-app:{{version}}
```
1 change: 1 addition & 0 deletions config/config-env.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
host:INSPECT_SERVER_URL
home:PATH
defaultEnv:DEFAULT_ENV
gridViewPeriod:DEFAULT_GRID_VIEW_PERIOD
kpiViewPeriod:DEFAULT_KPI_VIEW_PERIOD
2 changes: 1 addition & 1 deletion config/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DIR=$(dirname "$0")
MAP=$(< "$DIR/config-env.map")
ENTRIES=""
for ENTRY in $MAP; do #separate var with space
VALUE=$(printenv "${ENTRY#:*}")
VALUE=$(printenv "${ENTRY#*:}")
KEY=${ENTRY%:*}
if [ -n "$VALUE" ]; then
ENTRIES="$ENTRIES\"$KEY\":\"$VALUE\","
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inspect-app",
"version": "15.9.0",
"version": "15.10.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down

0 comments on commit 375b8a4

Please sign in to comment.