You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Step-by-step guide for installing and configuring BDIViz on Linux and Unix-based systems",
901
-
content: "Prerequisites linkBefore installing BDIViz on your Linux system, ensure you have the following prerequisites:\nA Linux distribution (Ubuntu, Debian, CentOS, etc.) with amd64 architecture Docker Engine installed and running (version 19.03 or later) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker (if not already installed) linkIf you don’t have Docker installed, follow these steps to install it:\nUbuntu/Debian CentOS/RHEL Arch Linux sudo apt update sudo apt install \\ ca-certificates \\ curl \\ gnupg \\ lsb-release sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \\ sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg echo \\ \"deb [arch=$(dpkg --print-architecture) \\ signed-by=/etc/apt/keyrings/docker.gpg] \\ https://download.docker.com/linux/ubuntu \\ $(lsb_release -cs) stable\" | \\ sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null sudo apt update sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo yum install -y yum-utils sudo yum-config-manager \\ --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo pacman -Syu sudo pacman -S docker sudo systemctl enable docker sudo systemctl start docker Run BDIViz Using Docker linkOnce Docker is installed and running, follow these steps to run BDIViz using the edenwu/bdi-viz-react:amd64 image:\n1. Pull the Docker image link docker pull edenwu/bdi-viz-react:amd64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:amd64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:amd64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
901
+
content: "Prerequisites linkBefore installing BDIViz on your Linux system, ensure you have the following prerequisites:\nA Linux distribution (Ubuntu, Debian, CentOS, etc.) with amd64 architecture Docker Engine installed and running (version 19.03 or later) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker (if not already installed) linkIf you don’t have Docker installed, follow these steps to install it:\nUbuntu/Debian CentOS/RHEL Arch Linux sudo apt update sudo apt install \\ ca-certificates \\ curl \\ gnupg \\ lsb-release sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \\ sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg echo \\ \"deb [arch=$(dpkg --print-architecture) \\ signed-by=/etc/apt/keyrings/docker.gpg] \\ https://download.docker.com/linux/ubuntu \\ $(lsb_release -cs) stable\" | \\ sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null sudo apt update sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo yum install -y yum-utils sudo yum-config-manager \\ --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin sudo systemctl enable docker sudo systemctl start docker sudo pacman -Syu sudo pacman -S docker sudo systemctl enable docker sudo systemctl start docker Run BDIViz Using Docker linkOnce Docker is installed and running, follow these steps to run BDIViz using the edenwu/bdi-viz-react:amd64 image:\n1. Pull the Docker image link docker pull edenwu/bdi-viz-react:amd64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:amd64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:amd64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:amd64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
description: "Step-by-step guide for installing and configuring BDIViz on MacOS(ARM64) systems",
910
-
content: "Prerequisites linkBefore setting up BDIViz on your Mac, ensure your system meets the following requirements:\nMac computer with Apple Silicon (M1, M2, M3, etc.) – ARM64 architecture macOS 12.0 Monterey or later Docker Desktop for Mac (ARM64 version) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker Desktop for Mac link Download Docker Desktop for Mac (Apple Silicon): 👉 https://www.docker.com/products/docker-desktop/\nOpen the downloaded .dmg file and drag Docker to your Applications folder.\nLaunch Docker Desktop from Spotlight or Applications.\nGrant permissions if prompted and wait for Docker to start (you should see the Docker icon in the menu bar).\nOpen Terminal and verify installation:\ndocker --version You should see an output like:\nDocker version 24.0.0, build xxxxxxxx Run BDIViz Using Docker link1. Pull the Docker image link docker pull edenwu/bdi-viz-react:arm64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:arm64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:amd64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:amd64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
910
+
content: "Prerequisites linkBefore setting up BDIViz on your Mac, ensure your system meets the following requirements:\nMac computer with Apple Silicon (M1, M2, M3, etc.) – ARM64 architecture macOS 12.0 Monterey or later Docker Desktop for Mac (ARM64 version) At least 4GB of RAM and 10GB of free disk space Internet connection to pull the Docker image Install Docker Desktop for Mac link Download Docker Desktop for Mac (Apple Silicon): 👉 https://www.docker.com/products/docker-desktop/\nOpen the downloaded .dmg file and drag Docker to your Applications folder.\nLaunch Docker Desktop from Spotlight or Applications.\nGrant permissions if prompted and wait for Docker to start (you should see the Docker icon in the menu bar).\nOpen Terminal and verify installation:\ndocker --version You should see an output like:\nDocker version 24.0.0, build xxxxxxxx Run BDIViz Using Docker link1. Pull the Docker image link docker pull edenwu/bdi-viz-react:arm64 2. Run the container link docker run -d \\ --name bdiviz \\ -p 3000:3000 \\ edenwu/bdi-viz-react:arm64 This will start the BDIViz container in detached mode and expose the web application at http://localhost:3000.\n3. Verify the container is running linkYou can verify the container is up using:\ndocker ps If everything is working correctly, you should see bdiviz listed in the output.\n4. Stop the container linkWhen you’re done, you can stop the container with:\ndocker stop bdiviz And if needed, remove it:\ndocker rm bdiviz Note link Make sure port 3000 is available on your host machine. You can bind-mount local volumes or customize environment variables for advanced use (e.g., persistent storage, configuration injection). To update the image, simply pull the latest tag again and restart the container: docker pull edenwu/bdi-viz-react:arm64 docker stop bdiviz \u0026\u0026 docker rm bdiviz docker run -d --name bdiviz -p 3000:3000 edenwu/bdi-viz-react:arm64 Troubleshooting link Port already in use? Try using a different port: docker run -d --name bdiviz-mac -p 8080:3000 edenwu/bdi-viz-react:arm64 Then access it at http://localhost:8080. Docker daemon not running? Open Docker Desktop and make sure it’s active. Still stuck? Feel free to reach out or open an issue on the GitHub repository. "
0 commit comments