How to Run StyleSync Locally with Docker
Step-by-step guide for beginners
Guide
Download ZIP
Follow this instructions
1. Download and Unzip the Project
Download the ZIP file of the project to your computer.
Unzip (extract) it to a folder.
On Windows: right-click → “Extract All…”; on Mac: double-click the ZIP file.
Download ZIP
2. Install Docker
Download and install Docker Desktop.
Open Docker Desktop and make sure it’s running.
Download Docker
3. Open a Terminal or Command Prompt
On Windows: Open “Command Prompt” or “PowerShell”.
On Mac: Open the “Terminal” app.
On Linux: Open your terminal.
4. Go to the Project Folder
Use the cd command to change to the folder where you unzipped the project. Example (replace with your actual path):
cd path/to/stylesync-me-1
5. Build the Docker Image
Run this command (make sure you are in the folder with the Dockerfile):
docker build -t stylesync-me .
6. Run the App in Docker
Start the app with:
docker run -p 3000:3000 stylesync-me
This will run the app and make it available on your computer at port 3000.
7. Open Your Browser
Go to http://localhost:3000
You should see the StyleSync app running!
GO!
🛠️ Troubleshooting
If you get an error like docker: command not found, make sure Docker Desktop is installed and running.
If you see a message about “port 3000 already in use,” stop whatever else is using that port or change the port in the command (e.g., -p 8080:3000).
That’s it!
You don’t need to install Node.js or anything else—just Docker.
If you have any issues, check the instructions above or
contact support
.