/gix-vscode-2204

@STCGoal Docker VSCode to build and publish extension

Primary LanguageDockerfileGNU General Public License v3.0GPL-3.0

VSCODE

logo

BADGES

pipeline status

INTRODUCTION

Docker image of :

Continuous integration on :

Automatically updated on :

PREREQUISITES

Use docker

BUILD

DOCKER RUN

docker run -d \
--name vscode \
--network host \
--privileged \
-e DISPLAY \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /tmp/.X11-unix/:/tmp/.X11-unix/ \
-v ${HOME}:/home/vscode \
alexandreoda/vscode

DOCKER COMPOSE

version: "2.0"

services:
  vscode:
    container_name: vscode
    image: alexandreoda/vscode
    restart: "no"
    network_mode: host
    privileged: true
    environment:
      - DISPLAY
    volumes:
      - "${HOME}:/home/vscode"
      - "/var/run/docker.sock:/var/run/docker.sock"
      - "/tmp/.X11-unix:/tmp/.X11-unix"

LICENSE

GPLv3+