Docker Deployment
About 131 wordsLess than 1 minute
Warning
This tutorial uses HTTPS as an example.
Pull the code onto the server
Pulling code to the server is usually done over SSH (more secure). You may also use HTTP — choose what works for you.
env
Set
VITE_GLOB_API_URLin/apps/web-antd/.env.productionto your domain address (no trailing slash).Update nginx configuration
The file
/scripts/deploy/nginx.confincludes comments — modify as needed.Update the
docker-composescriptThe
docker-compose.ymlscript includes comments — modify as needed.Run the one-click start command
Prerequisites
- Comment out the fba_ui container in the fba backend docker-compose script
- Build the fba backend via docker-compose first
Open a terminal in the project root and run:
docker compose up -d --build

