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
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,36 @@ You can start editing the page by modifying `app/page.tsx`. The page auto-update
20
20
21
21
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22
22
23
+
## Docker
24
+
25
+
This project includes Docker support for containerized deployments.
26
+
27
+
### Using Makefile (Recommended)
28
+
29
+
```bash
30
+
# Show all available commands
31
+
make help
32
+
33
+
# Build Docker image
34
+
make build
35
+
36
+
# Start container
37
+
make start
38
+
39
+
# View logs
40
+
make logs
41
+
42
+
# Stop container
43
+
make stop
44
+
45
+
# Clean up (remove container and image)
46
+
make clean
47
+
48
+
# Rebuild from scratch
49
+
make rebuild
50
+
51
+
The application will be available at [http://localhost:3000](http://localhost:3000).
52
+
23
53
## Learn More
24
54
25
55
To learn more about Next.js, take a look at the following resources:
0 commit comments