Skip to content

Commit 348b77a

Browse files
author
Lasim
committed
fix: update Docker run command for frontend environment variables
1 parent bbcfbf4 commit 348b77a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,9 @@ Alternatively, you can deploy the pre-built Docker images for the frontend and b
127127
The frontend requires environment variables to connect to the backend and for other configurations.
128128

129129
```bash
130-
docker run -d \
131-
-p 8080:80 \ # Exposes frontend on host port 8080, container runs on 80
132-
-e VITE_DEPLOYSTACK_APP_URL="http://localhost:3000" \ # URL of your backend service
133-
-e VITE_APP_TITLE="Your DeployStack Title" \
134-
# Add any other environment variables as needed
130+
docker run -d -p 8080:8080 \
131+
-e VITE_DEPLOYSTACK_APP_URL="http://localhost:3000" \
132+
-e VITE_APP_TITLE="DeployStack Instance" \
135133
deploystack/frontend:latest
136134
```
137135

0 commit comments

Comments
 (0)