├── .env ├── .github ├── pull_request_template.md └── workflows │ └── ci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── Vagrantfile ├── docker-compose.override.yml ├── docker-compose.yml ├── images └── screen-1.png └── startup.sh /.env: -------------------------------------------------------------------------------- 1 | # Vagrant image settings 2 | MEMORY=8000 # 8GB 3 | CPU=4 4 | DISK_SIZE=100 -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/Vagrantfile -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/images/screen-1.png -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaggeliskls/windows-in-docker-container/HEAD/startup.sh --------------------------------------------------------------------------------