diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 2cfce92..f3101b9 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -31,7 +31,7 @@ services: # TCP # MESHCORE_TCP_HOST: 192.168.1.100 - # MESHCORE_TCP_PORT: 4000 + # MESHCORE_TCP_PORT: 5000 # BLE # BLE in Docker usually needs additional manual compose changes such as diff --git a/scripts/setup/install_docker.sh b/scripts/setup/install_docker.sh index 4f28918..d949b90 100755 --- a/scripts/setup/install_docker.sh +++ b/scripts/setup/install_docker.sh @@ -35,7 +35,7 @@ SERIAL_HOST_PATH="/dev/ttyACM0" SERIAL_COMPOSE_HOST_PATH="/dev/ttyACM0" SERIAL_CONTAINER_PATH="/dev/meshcore-radio" TCP_HOST="" -TCP_PORT="4000" +TCP_PORT="5000" BLE_ADDRESS="" BLE_PIN="" ENABLE_BOTS="N" @@ -311,8 +311,8 @@ case "$TRANSPORT_CHOICE" in echo -e "${RED}TCP host is required.${NC}" read -r -p "TCP host: " TCP_HOST done - read -r -p "TCP port (default: 4000): " TCP_PORT - TCP_PORT="${TCP_PORT:-4000}" + read -r -p "TCP port (default: 5000): " TCP_PORT + TCP_PORT="${TCP_PORT:-5000}" echo -e "${GREEN}TCP: ${TCP_HOST}:${TCP_PORT}${NC}" ;; 3) diff --git a/scripts/setup/install_service.sh b/scripts/setup/install_service.sh index d9a380d..7a140f8 100755 --- a/scripts/setup/install_service.sh +++ b/scripts/setup/install_service.sh @@ -114,8 +114,8 @@ case "$TRANSPORT_CHOICE" in echo -e "${RED}TCP host is required.${NC}" read -rp "TCP host: " TCP_HOST done - read -rp "TCP port (default: 4000): " TCP_PORT - TCP_PORT="${TCP_PORT:-4000}" + read -rp "TCP port (default: 5000): " TCP_PORT + TCP_PORT="${TCP_PORT:-5000}" echo -e "${GREEN}TCP: ${TCP_HOST}:${TCP_PORT}${NC}" ;; 4)