From b2df7771031cc5d40ab749f75ffb1821ca606a13 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 18 Mar 2026 22:31:11 -0700 Subject: [PATCH] devops: add devcontainer.json (#1473) --- .devcontainer/devcontainer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..4bed909 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json", + "name": "Playwright", + "image": "mcr.microsoft.com/playwright:v1.58.2-noble", + "privileged": true, + "init": true, + "remoteUser": "pwuser", + "features": { + "ghcr.io/devcontainers/features/desktop-lite:1": {}, + "ghcr.io/devcontainers/features/github-cli:1": {}, + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {} + }, + "forwardPorts": [ + 6080 + ], + "portsAttributes": { + "6080": { + "label": "noVNC" + } + } +} \ No newline at end of file