Windows installation
UI Bakery supports running its self-hosted version on Windows OS.
In order to install it, follow the steps below:
Install Docker Desktop.
Docker has updated its license agreement according to which the commercial use of Docker Desktop in larger enterprises (more than 250 employees OR more than $10 million USD in annual revenue) now requires a paid subscription.
If you fall under this limitation, you can still install Docker without Docker Desktop on Windows since this license update is not related to Docker or the Docker Engine.
Create a folder that will contain UI Bakery configuration files -
mkdir ui-bakery-on-premise
.Change the current working directory to the
cd ui-bakery-on-premise
folder.Download the
docker-compose.yml
configuration file:Invoke-WebRequest -Uri https://raw.githubusercontent.com/uibakery/self-hosted/main/docker-compose.yml -OutFile docker-compose.yml
.Create
.env
file from the template below (use this guide to generate the secrets):
Replace placeholders in the
.env
file with the appropriate secrets you generated.Pull the containers and run them using the following command -
docker compose up -d
.
Last updated
Was this helpful?