diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3746fd1..fe17278 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -8,7 +8,11 @@ "ghcr.io/devcontainers/features/python:1.6.3": { "version": "3.12.0" }, - "ghcr.io/devcontainers/features/aws-cli:1": {} + "ghcr.io/devcontainers/features/aws-cli:1": {}, + "ghcr.io/devcontainers/features/docker-in-docker:2.12.0": { + "version": "27.0.3", + "moby": false + } }, "postCreateCommand": "./tools/setup.sh", "shutdownAction": "stopContainer" diff --git a/README.md b/README.md index fce5714..aa71846 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,11 @@ tools can be installed by running: ./tools/setup.sh ``` +When developing outside the dev container, the following tools must be installed +manually. + +- [Docker](https://docs.docker.com/engine/install/) >= v27 + Development requires the activation of the Python virtual environment: ```