From 2f0e962edd8590119e3392404735cd0e328360d0 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 19 Oct 2025 10:40:37 +0200 Subject: [PATCH] feat: Improve Github Codespaces configuration (#356) --- .devcontainer/010 - macOS Sequoia/devcontainer.json | 4 ++-- .devcontainer/030 - macOS Ventura/devcontainer.json | 4 ++-- .devcontainer/040 - macOS Monterey/devcontainer.json | 4 ++-- .devcontainer/050 - macOS Big Sur/devcontainer.json | 4 ++-- .devcontainer/060 - macOS Catalina/devcontainer.json | 4 ++-- .devcontainer/codespaces.yml | 3 +-- .devcontainer/devcontainer.json | 4 ++-- 7 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.devcontainer/010 - macOS Sequoia/devcontainer.json b/.devcontainer/010 - macOS Sequoia/devcontainer.json index be74f44..05e4072 100644 --- a/.devcontainer/010 - macOS Sequoia/devcontainer.json +++ b/.devcontainer/010 - macOS Sequoia/devcontainer.json @@ -4,16 +4,16 @@ "containerEnv": { "VERSION": "15" }, - "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", - "onAutoForward": "openBrowser" + "onAutoForward": "notify" } }, "otherPortsAttributes": { "onAutoForward": "ignore" }, "dockerComposeFile": "../codespaces.yml", + "workspaceFolder": "/workspaces/macos", "initializeCommand": "docker system prune --all --force" } diff --git a/.devcontainer/030 - macOS Ventura/devcontainer.json b/.devcontainer/030 - macOS Ventura/devcontainer.json index 2f58417..ff69762 100644 --- a/.devcontainer/030 - macOS Ventura/devcontainer.json +++ b/.devcontainer/030 - macOS Ventura/devcontainer.json @@ -4,16 +4,16 @@ "containerEnv": { "VERSION": "13" }, - "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", - "onAutoForward": "openBrowser" + "onAutoForward": "notify" } }, "otherPortsAttributes": { "onAutoForward": "ignore" }, "dockerComposeFile": "../codespaces.yml", + "workspaceFolder": "/workspaces/macos", "initializeCommand": "docker system prune --all --force" } diff --git a/.devcontainer/040 - macOS Monterey/devcontainer.json b/.devcontainer/040 - macOS Monterey/devcontainer.json index 680f191..39cf06a 100644 --- a/.devcontainer/040 - macOS Monterey/devcontainer.json +++ b/.devcontainer/040 - macOS Monterey/devcontainer.json @@ -4,16 +4,16 @@ "containerEnv": { "VERSION": "12" }, - "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", - "onAutoForward": "openBrowser" + "onAutoForward": "notify" } }, "otherPortsAttributes": { "onAutoForward": "ignore" }, "dockerComposeFile": "../codespaces.yml", + "workspaceFolder": "/workspaces/macos", "initializeCommand": "docker system prune --all --force" } diff --git a/.devcontainer/050 - macOS Big Sur/devcontainer.json b/.devcontainer/050 - macOS Big Sur/devcontainer.json index 7f16466..e6a3edf 100644 --- a/.devcontainer/050 - macOS Big Sur/devcontainer.json +++ b/.devcontainer/050 - macOS Big Sur/devcontainer.json @@ -4,16 +4,16 @@ "containerEnv": { "VERSION": "11" }, - "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", - "onAutoForward": "openBrowser" + "onAutoForward": "notify" } }, "otherPortsAttributes": { "onAutoForward": "ignore" }, "dockerComposeFile": "../codespaces.yml", + "workspaceFolder": "/workspaces/macos", "initializeCommand": "docker system prune --all --force" } diff --git a/.devcontainer/060 - macOS Catalina/devcontainer.json b/.devcontainer/060 - macOS Catalina/devcontainer.json index c541127..bc87dd3 100644 --- a/.devcontainer/060 - macOS Catalina/devcontainer.json +++ b/.devcontainer/060 - macOS Catalina/devcontainer.json @@ -4,16 +4,16 @@ "containerEnv": { "VERSION": "10" }, - "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", - "onAutoForward": "openBrowser" + "onAutoForward": "notify" } }, "otherPortsAttributes": { "onAutoForward": "ignore" }, "dockerComposeFile": "../codespaces.yml", + "workspaceFolder": "/workspaces/macos", "initializeCommand": "docker system prune --all --force" } diff --git a/.devcontainer/codespaces.yml b/.devcontainer/codespaces.yml index 7fac8e4..98a75fc 100644 --- a/.devcontainer/codespaces.yml +++ b/.devcontainer/codespaces.yml @@ -1,9 +1,8 @@ services: macos: - image: dockurr/macos container_name: macos + image: ghcr.io/dockur/macos environment: - ALLOCATE: "Y" RAM_SIZE: "half" DISK_SIZE: "max" CPU_CORES: "max" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 0958683..8c32a13 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,16 +4,16 @@ "containerEnv": { "VERSION": "14" }, - "forwardPorts": [8006], "portsAttributes": { "8006": { "label": "Web", - "onAutoForward": "openBrowser" + "onAutoForward": "notify" } }, "otherPortsAttributes": { "onAutoForward": "ignore" }, "dockerComposeFile": "codespaces.yml", + "workspaceFolder": "/workspaces/macos", "initializeCommand": "docker system prune --all --force" }