vscode-dev-containers

NOTE: Most of the contents of this repository have been migrated to the new devcontainers GitHub org (https://github.com/devcontainers). See https://github.com/devcontainers/template-starter and https://github.com/devcontainers/feature-starter for information on creating your own! (by microsoft)

Vscode-dev-containers Alternatives

Similar projects and alternatives to vscode-dev-containers

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better vscode-dev-containers alternative or higher similarity.

vscode-dev-containers reviews and mentions

Posts with mentions or reviews of vscode-dev-containers. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-24.
  • How to use Ansible on Linux with tools like visual Studio code
    2 projects | /r/ansible | 24 Feb 2023
  • Setup GitHub Codespaces with AWS IAM Roles Anywhere
    4 projects | dev.to | 22 Sep 2022
    // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: // https://github.com/microsoft/vscode-dev-containers/tree/v0.241.1/containers/ubuntu { "name": "Ubuntu", "build": { "dockerfile": "Dockerfile", "args": { "VARIANT": "ubuntu-22.04" } }, "postStartCommand": ".devcontainer/env.sh", "remoteUser": "vscode", "features": { "git": "os-provided", "aws-cli": "latest", "golang": "latest", "sshd": "latest" } }
  • Jupyter Notebooks + VSCode Dev Container with Puppeteer support
    5 projects | dev.to | 30 Aug 2022
    # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/python-3/.devcontainer/base.Dockerfile # [Choice] Python version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.10, 3.9, 3.8, 3.7, 3.6, 3-bullseye, 3.10-bullseye, 3.9-bullseye, 3.8-bullseye, 3.7-bullseye, 3.6-bullseye, 3-buster, 3.10-buster, 3.9-buster, 3.8-buster, 3.7-buster, 3.6-buster ARG VARIANT="3.10-bullseye" FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT} # [Choice] Node.js version: none, lts/*, 16, 14, 12, 10 ARG NODE_VERSION="none" RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi # Install Google Chrome Stable and fonts # Note: this installs the necessary libs to make the browser work with Puppeteer. ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true RUN apt-get update && apt-get install gnupg wget -y && \ wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && \ sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && \ apt-get update && \ apt-get install google-chrome-stable -y --no-install-recommends && \ rm -rf /var/lib/apt/lists/* # [Optional] If your pip requirements rarely change, uncomment this section to add them to the image. COPY requirements.txt /tmp/pip-tmp/ RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \ && rm -rf /tmp/pip-tmp
  • rust-analyzer changelog #143
    2 projects | /r/rust | 22 Aug 2022
    Looks like they do? https://github.com/microsoft/vscode-dev-containers/issues/675
  • Exploring .NET WebAssembly with WASI and Wasmtime
    8 projects | dev.to | 9 Aug 2022
    In the vscode-dev-containers repo, you'll see that there too is a .devcontainer directory. This contains instructions for building the dotnet vscode-dev-container. Click into the directory.
  • Introduction to GitHub Codespaces - Building your first Dev Container
    2 projects | dev.to | 6 Aug 2022
    Select a predefined container definition. In my case I will select 'Ubuntu'. NOTE: There is a growing variety of predefined images that can be selected from, maintained on GitHubs vscode-dev-containers repository:
  • Extending VSCode Dev Container Features
    4 projects | dev.to | 27 Jul 2022
    As documented here, a Dev Container's built-in features are sources from the script-library folder in the vscode-dev-containers repo. The Remote - Containers extension and GitHub Codespaces include "preview" functionality to extend Dev Container features. You can add any custom feature by using the dev-container-features-template sample repository.
  • CUDA Development Container
    2 projects | /r/CUDA | 3 Jul 2022
    My laptop doesn't have a powerful GPU, so I usually build and test CUDA projects on a remote server. With the help of dev-containers, I wrote a configuration file for a CUDA development environment to make things easier. I'll be happy if you test it and give your opinions about it.
  • Nix on Github Codespaces
    2 projects | dev.to | 26 Jun 2022
  • How to use docker for development
    2 projects | dev.to | 2 Jun 2022
    // For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: // https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/javascript-node { "name": "lucas-paganini-api", "build": { "dockerfile": "./Dockerfile", "context": ".." }, "forwardPorts": [3000], "workspaceMount": "source=${localWorkspaceFolder},target=/var/www,type=bind", "workspaceFolder": "/var/www", "postStartCommand": "npm clean-install", "shutdownAction": "stopContainer", "settings": { "terminal.integrated.shell.linux": "/bin/bash" }, // Add the IDs of extensions you want to be installed when the container is created. "extensions": ["ms-vscode-remote.remote-containers", "esbenp.prettier-vscode"] }
  • A note from our sponsor - WorkOS
    workos.com | 28 Mar 2024
    The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning. Learn more →

Stats

Basic vscode-dev-containers repo stats
41
4,625
0.0
4 months ago
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com