How to Install Orchest on Windows 10
Orchest is an open-source platform for creating and running team workflows. In this tutorial, we will guide you through the steps to install Orchest on Windows 10.
Prerequisites
- Windows 10 with admin access
- PowerShell version 5.0 or higher
- Docker Desktop for Windows installed and running
- Git
Installation Steps
Step 1: Clone Orchest Repository
Open PowerShell as an administrator.
Clone the Orchest repository by running the following command:
git clone https://github.com/orchest/Orchest.gitNavigate to the Orchest directory:
cd Orchest
Step 2: Build Orchest Image
Build the Orchest Docker image by running the following command:
docker build -t orchest .Wait for the image to build.
Step 3: Run Orchest Container
Run the Orchest Docker container by running the following command:
docker run -d -p 80:80 orchestWait for the container to start.
Note: This may take a few minutes the first time you run.
Step 4: Access Orchest in your browser
Open your browser.
Type
http://localhostin the address bar and hit enter.The Orchest login screen should appear.
You can now log in with the default admin credentials of
adminfor both the username and password.
Congratulations, you have successfully installed Orchest on Windows 10!