aboutsummaryrefslogtreecommitdiffstats
path: root/nms/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'nms/README.md')
-rw-r--r--nms/README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/nms/README.md b/nms/README.md
index b22c4a8..4d310cb 100644
--- a/nms/README.md
+++ b/nms/README.md
@@ -10,9 +10,13 @@
- run `./makedockerfiles.sh`, which creates the docker image files, and builds
them.
-- Start database node: ` ... `
-- Start front end node: ` ... `
+- Start database node: `docker run -v /sys/fs/cgroup:/sys/fs/cgroup:ro --privileged --rm -ti --name=db nms-db`
+- Start front end node: ` docker run -v /sys/fs/cgroup:/sys/fs/cgroup:ro --privileged --rm -ti --name=front --link=db:db nms-front `
+- Find IP's: `docker inspect front`, `docker instpect db`
+- Start a shell in a container: `docker exec front /bin/bash`
- Open localhost:PORT in browser to start testing.
+
+
## TODO
- finish the installation guide above.