Windows installation
UI Bakery supports running its self-hosted version on Windows OS. In order to install it, follow these steps:
Create a folder that would contain UI Bakery configuration files:
mkdir ui-bakery-on-premise
Change the current working directory to this folder:
cd ui-bakery-on-premise
Download
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 the following guide to generate the secrets):
Replace placeholders in the
.env
file with the appropriate secrets you generate.Pull the containers and run them using the following command
docker compose up -d
Last updated