Moved xos_ui to port 9000 and xos_bootstrap_ui to port 9001 for all config
Change-Id: I75ab78deb55b344b0b64b183dda2859936045e9c
diff --git a/test-standalone/Makefile b/test-standalone/Makefile
index 42ba754..ecd5f7e 100644
--- a/test-standalone/Makefile
+++ b/test-standalone/Makefile
@@ -8,8 +8,8 @@
DOCKER_PROJECT ?= teststandalone
BOOTSTRAP_PROJECT ?= teststandalonebs
-XOS_BOOTSTRAP_PORT ?= 9998
-XOS_UI_PORT ?= 9999
+XOS_BOOTSTRAP_PORT ?= 9001
+XOS_UI_PORT ?= 9000
DB_NAME ?= $(BOOTSTRAP_PROJECT)_xos_db_1
diff --git a/test-standalone/docker-compose-bootstrap.yml b/test-standalone/docker-compose-bootstrap.yml
index c8910fd..0769731 100644
--- a/test-standalone/docker-compose-bootstrap.yml
+++ b/test-standalone/docker-compose-bootstrap.yml
@@ -17,9 +17,9 @@
image: xosproject/xos
networks:
- xos
- command: python /opt/xos/manage.py runserver 0.0.0.0:9998 --insecure --makemigrations
+ command: python /opt/xos/manage.py runserver 0.0.0.0:9001 --insecure --makemigrations
ports:
- - "9998:9998"
+ - "9001:9001"
links:
- xos_db
volumes:
diff --git a/test-standalone/xos.yaml b/test-standalone/xos.yaml
index 81446a3..b22513a 100644
--- a/test-standalone/xos.yaml
+++ b/test-standalone/xos.yaml
@@ -10,8 +10,8 @@
xos:
type: tosca.nodes.XOS
properties:
- ui_port: 9999
- bootstrap_ui_port: 9998
+ ui_port: 9000
+ bootstrap_ui_port: 9001
docker_project_name: teststandalone
db_container_name: teststandalonebs_xos_db_1
frontend_only: true