From ce650c762008e649559cf506540f0b9ac1c5637f Mon Sep 17 00:00:00 2001 From: PopOS User Date: Thu, 13 Nov 2025 13:03:01 +0530 Subject: [PATCH 1/2] Add: instructions for running project with Docker --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 0349143d..2d8a7e83 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ # Try Out Development Containers: Python +## 🐳 Running the Project with Docker + +You can also build and run this project manually using the same base image that the VS Code Dev Container uses. + +```bash +docker pull mcr.microsoft.com/vscode/devcontainers/python:0-3.7 +docker run -it -v $(pwd):/workspace mcr.microsoft.com/vscode/devcontainers/python:0-3.7 bash [![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/vscode-remote-try-python) From d59e9239bb8f668aec16ad71d2884e9846a5b2e8 Mon Sep 17 00:00:00 2001 From: PopOS User Date: Thu, 13 Nov 2025 15:02:03 +0530 Subject: [PATCH 2/2] Add: Docker setup instructions to README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 2d8a7e83..9a2ad6da 100644 --- a/README.md +++ b/README.md @@ -117,3 +117,14 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio Copyright © Microsoft Corporation All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information. +## 🐳 Running the Project with Docker + +You can quickly run this project using Docker: + +```bash +# Build the image +docker build -t vscode-remote-try-python . + +# Run the container +docker run -it -p 8000:8000 vscode-remote-try-python +docker-compose up