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
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,20 @@ pnpm dev
54
54
>
55
55
> Setup a PostgreSQL database (locally or online) and replace the **DATABASE_URL** environment variable. Then you can run `pnpm db:push` to update your database schema and then run `pnpm db:seed` to seed your database.
56
56
57
+
## Dockerfile
57
58
59
+
Build the image using the following command
60
+
61
+
```bash
62
+
docker build -t start-ui-web .
63
+
```
64
+
Then, you can run it with this example command:
65
+
66
+
```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`
0 commit comments