From 9e3842eefac37880949cfc9febc2f912492a547d Mon Sep 17 00:00:00 2001 From: Lino Schmidt Date: Wed, 18 Mar 2026 18:33:32 +0000 Subject: [PATCH] Added devcontainer --- .devcontainer/devcontainer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..afdce97 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,19 @@ +{ + "name": "Ansible Development Container", + "image": "ghcr.io/ansible/community-ansible-dev-tools:latest", + "runArgs": [ + "--privileged", + "-e", + "GIT_EDITOR=code --wait" + ], + "customizations": { + "vscode": { + "extensions": [ + "eamodio.gitlens", + "redhat.ansible", + "redhat.vscode-yaml", + "ms-python.python" + ] + } + } +} \ No newline at end of file