Run VSCodium Containerized in Docker @i12bretro
Run VSCodium Containerized in Docker  @i12bretro
Uploaded December 2024 | Updated September 2026, 2 weeks ago
#VSCodium #Linux #Docker

Full steps can be found at i12bretro.github.io/tutorials/0985.html

--------------------------------------------------------------------
What is VSCodium?
--------------------------------------------------------------------
VSCodium is a clone of Microsoft’s Visual Studio Code. The project’s sole aim is to provide you with ready to use binaries without Microsoft’s telemetry and tracking code. - vscodium.com
 
--------------------------------------------------------------------
Installing Docker
--------------------------------------------------------------------
   01. Log into the Linux Docker host and run the following commands in a terminal window
         # install prerequisites
         sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg-agent -y
         # add docker gpg key
         curl -fsSL download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release)/gpg | sudo apt-key add -
         # add docker software repository
         sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release) $(lsb_release -cs) stable"
         # install docker
         sudo apt install docker-ce docker-compose containerd.io -y
         # enable and start docker service
         sudo systemctl enable docker && sudo systemctl start docker
         # add the current user to the docker group
         sudo usermod -aG docker $USER
         # reauthenticate for the new group membership to take effect
         su - $USER
 
--------------------------------------------------------------------
Running VSCodium
--------------------------------------------------------------------
   01. Continue with the following commands in a terminal window
         # list current uid and gid, note these for later
         id $user
         # create working directories
         mkdir ~/docker/vscodium/{config,code} -p
         # run the vscodium docker image
         # replace PUID, GUID with the output of the id $user command above
         docker run -d --name=vscodium --cap-add=IPC_LOCK -e PUID=1000 -e PGID=1000 -e TZ=America/New_York -p 8003:3000 -v ~/docker/vscodium/config:/config -v ~/docker/vscodium/code:/code --shm-size="1gb" --restart unless-stopped lscr.io/linuxserver/vscodium:latest
   02. Open a web browser and navigate to http://localhost:8003
   03. Welcome to VSCodium
 
Source:  hub.docker.com/r/linuxserver/vscodium
 


### Connect with me and others ###
★ Discord: discord.com/invite/EzenvmSHW8
★ Reddit: reddit.com/r/i12bretro
★ Twitter: twitter.com/i12bretro
Run VSCodium Containerized in DockerSelf-hosted Wikipedia Style Wiki with MediaWiki on DebianInstalling Windows Subsystem for Linux (WSL) Inside VirtualBox VMInstall Easy!Appointments - Appointment Scheduler System - on WindowsRaspberry Pi 3 vs Raspberry Pi 5Create and Apply SSL Certificates for PortainerIn-Place Upgrade Proxmox VE from 7 to 8Create a Secure Web Based Password Vault with Keepass WebMonitor Docker Container Resource Usage with cAdvisorRun HomeDash - Server MonitorDashboard - on LinuxInstall MeshCentral - Remote Management Site - on LinuxInstall SolidInvoice - Open Source Invoicing Software - on Windows
i12bretro |

Run VSCodium Containerized in Docker

SHARE TO X SHARE TO REDDIT SHARE TO FACEBOOK WALLPAPER