Docker image of :
Continuous integration on :
Automatically updated on :
Use docker
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
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"