You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,11 +62,13 @@ Build the image using the following command
62
62
docker build -t start-ui-web .
63
63
```
64
64
Then, you can run it with this example command:
65
-
66
65
```bash
67
-
And now you can use this command example to run it `docker run -d --network start-ui-web_default -p 3000:3000 --name start-ui-web-container start-ui-web`
66
+
docker run -d --network start-ui-web_default -p 3000:3000 --name start-ui-web-container start-ui-web
68
67
```
69
68
69
+
> [!NOTE]
70
+
> The network name `start-ui-web_default` is created by Docker Compose when you run `pnpm dk:start`. If you're running Docker without Docker Compose, use `--network bridge` or omit the `--network` flag.
71
+
70
72
During the build process, it automatically uses your project’s .env file.
0 commit comments