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
+65-2Lines changed: 65 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,9 +88,72 @@ Some things to try:
88
88
- Click OK
89
89
- Press <kbd>F1</kbd> and select the **Dev Containers: Rebuild Container** or **Codespaces: Rebuild Container** command so the modifications are picked up.
90
90
91
-
### More samples
91
+
## Running with Docker
92
+
93
+
For users who prefer standard Docker over Dev Containers, this project now includes Docker support.
94
+
95
+
### Prerequisites
96
+
-[Docker](https://docs.docker.com/get-docker/) installed on your system
97
+
-[Docker Compose](https://docs.docker.com/compose/install/) (included with Docker Desktop)
98
+
99
+
### Quick Start with Docker Compose
100
+
101
+
```bash
102
+
# Build and start the application
103
+
docker compose up --build
104
+
105
+
# Stop the application
106
+
docker compose down
107
+
```
108
+
109
+
### Alternative: Using Docker directly
110
+
111
+
```bash
112
+
# Build the image
113
+
docker build -t vscode-remote-try-python .
114
+
115
+
# Run the container
116
+
docker run --rm -p 9000:9000 vscode-remote-try-python
117
+
```
118
+
119
+
### Docker Configuration
92
120
93
-
-[Tweeter App - Python and Django](https://github.com/Microsoft/python-sample-tweeterapp)
0 commit comments