Skip to content

Commit ab06069

Browse files
committed
fix docker deploy command and fix script run.sh
1 parent 97a8132 commit ab06069

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ Features of OmniUI includes:
3131
# 8000 -> 32771 UI
3232
```
3333
4. Setup IP address <br/>
34-
`docker exec openadm /root/omniui/run.sh setup 10.211.55.3 32773` <br/>
34+
`docker exec openadm /root/openadm/run.sh setup 10.211.55.3 32773` <br/>
3535
Note: The IP should be the one of Docker host instead of containter. The port should be the one mapped to port 5567
3636

3737
5. Start controller, core and UI <br/>
3838
```
3939
docker exec -it openadm /root/floodlight/floodlight.sh
4040
docker exec -it openadm omniui
41-
docker exec -it openadm bash -c "cd /root/omniui/ui && npm run dev"
41+
docker exec -it openadm bash -c "cd /root/openadm/ui && npm run dev"
4242
```
4343

4444
6. Connect Mininet to controller <br/>

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function setup {
4848
# Config IP address
4949
rm -rf $UI_CONFIG
5050
echo "{" > $UI_CONFIG
51-
echo " \"OmniUICoreURL\": \"http://$1:$2/\"" >> $UI_CONFIG
51+
echo " \"OpenADMCoreURL\": \"http://$1:$2/\"" >> $UI_CONFIG
5252
echo "}" >> $UI_CONFIG
5353
}
5454

0 commit comments

Comments
 (0)