From f55e8ced3a11c20144e5391dabb7c4cf7e81a6fa Mon Sep 17 00:00:00 2001 From: Hadrian Tang Date: Fri, 30 May 2025 03:07:57 +0800 Subject: [PATCH 1/2] Don't fix version in devcontainer.json --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 732783a6..5402f81c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "Jekyll", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/jekyll:2-bullseye", + "image": "mcr.microsoft.com/devcontainers/jekyll", // Features to add to the dev container. More info: https://containers.dev/features. "features": { From 75cd78b4831322928651f0c68cc1250ff1a6b519 Mon Sep 17 00:00:00 2001 From: Hadrian Tang Date: Fri, 30 May 2025 03:30:27 +0800 Subject: [PATCH 2/2] Docker is needed --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3ecf7ffd..3458d2e0 100644 --- a/README.md +++ b/README.md @@ -59,9 +59,10 @@ The easiest way to get started developing this repository on your own machine is ### Using the Dev Container -1. Open the repository in Visual Studio Code. -2. When prompted, reopen the repository in the dev container. -3. The dev container will automatically set up the development environment. +1. Install and run [Docker](https://www.docker.com/). +2. Open the repository in [Visual Studio Code](https://code.visualstudio.com/). +3. When prompted, reopen the repository in the dev container. +4. The dev container will automatically set up the development environment. **Summary of using a dev container:** A dev container is a pre-configured development environment that includes all the necessary tools and dependencies. It allows you to start developing without having to manually set up your environment.