distrobox VS vscode-dev-containers

Compare distrobox vs vscode-dev-containers and see what are their differences.

distrobox

Use any linux distribution inside your terminal. Enable both backward and forward compatibility with software and freedom to use whatever distribution you’re more comfortable with. Mirror available at: https://gitlab.com/89luca89/distrobox (by 89luca89)

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)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
distrobox vscode-dev-containers
402 41
8,927 4,625
- -
9.6 0.0
6 days ago 5 months ago
Shell Shell
GNU General Public License v3.0 only MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

distrobox

Posts with mentions or reviews of distrobox. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-27.
  • Windows 11 now comes with its own adware
    1 project | news.ycombinator.com | 24 Apr 2024
    Regarding the stability issue on a dev machine - you may be interested in playing with one of the immutable-os distros, such as SilverBlue (fedora based).

    The high-level take-away is you can't break your actual OS since it's root filesystem is read-only, and you use "pet" containers (on docker, podman, whatever) to do your work in. Applications are either sandboxed via Flatpak, or installed/run inside your pet containers. If your pet container dies, you cry about it for a moment, and when you're ready you get a new one - your actual os and other containers remain unaffected.

    I use distrobox[1] to create/run the pet containers.

    [1] https://github.com/89luca89/distrobox

  • Tools for Linux Distro Hoppers
    7 projects | dev.to | 27 Mar 2024
    Distrobox is a tool that enables us to try Linux distro CLI, including their package manager. This requires a containerization tool (e.g., Docker). In Windows, this can be achieved using WSL (Windows Subsystem for Linux)
  • Distrobox: Use any Linux distribution inside your terminal
    1 project | news.ycombinator.com | 10 Feb 2024
  • Fedora Atomic Desktops
    3 projects | news.ycombinator.com | 9 Feb 2024
    I use containerized versions of things, ubuntu and chainguard images mostly.

    You can always create containers with init if that's how you want to do that though. Some distros publish images that come that way: https://github.com/89luca89/distrobox/blob/main/docs/useful_...

  • Raspberry Pi is manufacturing 70K Raspberry Pi 5s per week
    1 project | news.ycombinator.com | 15 Jan 2024
    https://news.ycombinator.com/item?id=38505448 ... https://github.com/89luca89/distrobox/blob/main/docs/useful_...
  • Operating System?
    1 project | /r/SteamDeck | 11 Dec 2023
    Yes, you can do that but I've seen others use something like distrobox to run linux inside of SteamOS: https://github.com/89luca89/distrobox/blob/main/docs/posts/steamdeck_guide.md
  • How much will I screw up my system after installing Merkuro Calendar (KDE Akonadi application), formerly called Kalendar, on GNOME?
    1 project | /r/gnome | 11 Dec 2023
    For such cases you might use something like this: https://github.com/89luca89/distrobox
  • Battery consumption of using remote development with WSL2?
    2 projects | /r/bashonubuntuonwindows | 7 Dec 2023
    Btw #3: Depending on what the user is trying to accomplish, e.g. maybe to make WSL(2) itself more of a "subsystem" than a "container engine", using something like Distrobox or nsbox.dev can be a good idea (along with Docker or Podman in Distrobox's case; the other one uses systemd-nspawn).
  • Cannot run containers with Distrobox
    1 project | /r/debian | 7 Dec 2023
    1. Find here in "Containers Distros" section the distro image that you want to install ("Toolbox" versions are better because they are configured for Distrobox) and get it URL: https://distrobox.it/compatibility/#containers-distros 2. Use that URL to create Distrobox: distrobox create -i registry.fedoraproject.org/fedora-toolbox:39 -n fedora_1_39 3. Enter Distrobox fedora_1_39: distrobox enter fedora_1_39 4. You are already in Distrobox console. Look at the name in console, it should be include the container name. 5. To exit Distrobox: exit 6. If you run: distrobox list you will see all distroboxes on the system. You will also see that distrobox that we exited is still running. 7. To stop distrobox use commands: distrobox stop fedora_1_39
  • In-depth Distrobox tutorial/ or video?
    1 project | /r/linux4noobs | 6 Dec 2023

vscode-dev-containers

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
  • VS Code Dev Containers: A repository of development container definitions
    1 project | news.ycombinator.com | 28 Aug 2022
  • 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.
  • Recommended devcontainers for both Python and R workflows?
    1 project | /r/docker | 9 Aug 2022
    I'm trying to set up a dev environment which utilises the standard Python 3 devcontainer for Python files (which is great IMO), but also utilises the R devcontainer for R files. Or at the very least sets up the basic R for VSCode environment espoused on the VSCode tutorials.
  • 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.
  • what is a development container?
    1 project | /r/learnprogramming | 5 Jul 2022
    In your case in the development container you can specify a specific version of .NET SDK and Azure Functions SDK. There is a premade devcontainer for VSCode with Azure Functions and C#: https://github.com/microsoft/vscode-dev-containers/tree/main/containers/azure-functions-dotnet-6-isolated

What are some alternatives?

When comparing distrobox and vscode-dev-containers you can also consider the following projects:

toolbox - Tool for interactive command line environments on Linux

openvscode-server - Run upstream VS Code on a remote machine with access through a modern web browser from any device, anywhere.

wsl-distrod - Distrod is a meta-distro for WSL 2 which installs Ubuntu, Arch, Debian, Gentoo, etc. with systemd in a minute for you. Distrod also has built-in auto-start feature on Windows startup and port forwarding ability.

Code-Server - VS Code in the browser

docker-android - Android in docker solution with noVNC supported and video recording

dotfiles - ⊙ All the dotfiles needed to make the world a better place

flatpak - Linux application sandboxing and distribution framework

Vagrant - Vagrant is a tool for building and distributing development environments.

rustdesk - An open-source remote desktop, and alternative to TeamViewer.

SDKMan - The SDKMAN! Command Line Interface

toolbox-vscode - Toolbox Visual Studio Code integration

angular-cli - CLI tool for Angular