Skip to content

Commit

Permalink
ci: expand devcontainer configuration to support Docker
Browse files Browse the repository at this point in the history
Current Codespace configuration didn't had Docker installed. Now Docker is installed and can be used in the development flow
  • Loading branch information
ferferga authored Mar 16, 2023
1 parent 3eb6f85 commit 9e1d09f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "jellyfin-vue Codespace (with support for Tauri development)",
"name": "jellyfin-vue Codespace (with support for Tauri and Docker development)",
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-18",
"features": {
"ghcr.io/devcontainers/features/rust:1": {}
"ghcr.io/devcontainers/features/rust:1": {
"profile": "default"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"dockerDashComposeVersion": "v2"
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"containerEnv": { "SHELL": "/bin/bash" },
"forwardPorts": [3000],
Expand Down

0 comments on commit 9e1d09f

Please sign in to comment.