From d4d45de3dee871fbcc751ad43c6b0c969b39e0c5 Mon Sep 17 00:00:00 2001 From: Chris Raible Date: Tue, 29 Oct 2024 19:22:58 -0700 Subject: [PATCH] Added github-cli and some zsh plugins to dev container (#21460) no issue - The Dev Container didn't have the Github CLI installed, so this adds that using Dev Container "[features](https://containers.dev/implementors/features/)" - It also adds oh-my-zsh and a few plugins that are nice to have when developing. --- .devcontainer/devcontainer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e4093f1d37..fc15a5bcdc 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,11 @@ { "name": "Ghost Local DevContainer", + "features": { + "ghcr.io/devcontainers/features/github-cli:1": {}, + "ghcr.io/nils-geistmann/devcontainers-features/zsh:0": { + "plugins": "git yarn gh" + } + }, "dockerComposeFile": ["./.docker/base.compose.yml", "./.docker/base-devcontainer.compose.yml"], "service": "ghost", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",