Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .devcontainer/Dockerfile

This file was deleted.

9 changes: 0 additions & 9 deletions .devcontainer/boot

This file was deleted.

57 changes: 17 additions & 40 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,27 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Ruby development",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"name": "ruby-lsp",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-20",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {
"username": "vscode",
"userUid": 1001,
"userGid": 1001,
"installZsh": true,
"installOhMyZsh": true,
"configureZshAsDefaultShell": true,
"upgradePackages": true
},
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"packages": "libpq-dev, libvips"
},
"ghcr.io/devcontainers/features/ruby:1": {
"version": "3.4.1"
},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-extra/features/zsh-plugins:0": {
"username": "vscode",
"plugins": "bundler rails ruby yarn git"
},
"ghcr.io/devcontainers/features/sshd:1": {
"version": "latest"
}
"ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/devcontainers/features/ruby:1": {}
},
"overrideFeatureInstallOrder": ["ghcr.io/devcontainers/features/rust"]

// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": ["Shopify.ruby-lsp", "EditorConfig.EditorConfig"]
}
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// This can be used to network with other containers or the host.
"forwardPorts": [5433],

"postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": ".devcontainer/boot",
// "postCreateCommand": "yarn install",

// Configure tool-specific properties.
// "customizations": {},

"remoteUser": "vscode"
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
8 changes: 0 additions & 8 deletions .devcontainer/docker-compose.yml

This file was deleted.