labeg/devpc
Development container C# and Typescript apps
1M+
This repository contains a Docker image with minimal Desktop installation and software for develop C# and Typescript applications.
Includes packages:
The Image is automatically rebuilt every day, at midnight by GMT.
All other software you can install yourself.
The source code is located on the GitHub repository here:
https://github.com/LabEG/devpc
If you just want to try the features:
docker run -it --rm -e password='YOUR_VNC_PASSWORD' -p 5901:5901 labeg/devpc
If you want to use the container regularly:
docker run -d --restart always -e password='YOUR_VNC_PASSWORD' -p 5901:5901 labeg/devpc
-e password='YOUR_VNC_PASSWORD'
- required, password for VNC connections.-e user_password='YOUR_USER_PASSWORD'
- optional, password for user headless. By default, will be used password variable.-e root_password='YOUR_ROOT_PASSWORD'
- optional, password for root user. By default, will be used user_password variable, if it is not specified then password variable.-e resolution='1920x1080'
- optional, resolution for virtual screen.--shm-size='64m'
- optional, extend if firefox browser is crashing.docker build -t labeg/devpc .
docker pull labeg/devpc