Skip to content

Commit eca5694

Browse files
committed
fix typos in run scripts
1 parent 99fc848 commit eca5694

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/_docs/installing.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -848,8 +848,9 @@ npm run build
848848
Listing 78: Commands to install the web application of the CSLE management system.
849849
</p>
850850

851-
| Note: when you run the command `npm install` you may need to add the flag `--legacy-peer-deps`. Further, if you have an old operating system you may need to run the command `export NODE_OPTIONS=--openssl-legacy-provider` before running `npm run build` |
852-
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
851+
Note: when you run the command `npm install` you may need to add the flag `--legacy-peer-deps`.
852+
Further, if you have an old operating system you may need to
853+
run the command `export NODE_OPTIONS=--openssl-legacy-provider` before running `npm run build`
853854

854855
Next, install and start `pgadmin` **on the leader** by running the following commands:
855856
```bash

management-system/csle_mgmt_webapp.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

3-
cd csle_monitor; npm run build
3+
cd csle-mgmt-webapp; npm run build
44

5-
cd csle_monitor; python server/server.py &
5+
cd csle-mgmt-webapp; python server/server.py &

management-system/run_c_advisor.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
docker run -dt --volume=/:/rootfs:ro --volume=/var/run:/var/run:ro --volume=/sys:/sys:ro --volume=/var/lib/docker/:/var/lib/docker:ro --volume=/dev/disk/:/dev/disk:ro --publish=8080:8080 --name=cadvisor google/cadvisor:latest
3+
docker run -dt --volume=/:/rootfs:ro --volume=/var/run:/var/run:ro --volume=/sys:/sys:ro --volume=/var/lib/docker/:/var/lib/docker:ro --volume=/dev/disk/:/dev/disk:ro --publish=8080:8080 --name=cadvisor gcr.io/cadvisor/cadvisor

0 commit comments

Comments
 (0)