Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicholasdille/docker
Repository of container images for Windows as well as Linux
https://github.com/nicholasdille/docker
docker docker-images dockerfiles linux-containers windows-container windows-containers
Last synced: 3 months ago
JSON representation
Repository of container images for Windows as well as Linux
- Host: GitHub
- URL: https://github.com/nicholasdille/docker
- Owner: nicholasdille
- License: apache-2.0
- Created: 2016-06-07T11:21:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T11:57:53.000Z (over 7 years ago)
- Last Synced: 2024-05-28T03:21:28.771Z (6 months ago)
- Topics: docker, docker-images, dockerfiles, linux-containers, windows-container, windows-containers
- Language: PowerShell
- Homepage: http://dille.name/blog/tags/#Container
- Size: 32 MB
- Stars: 12
- Watchers: 6
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - nicholasdille/docker - Repository of container images for Windows as well as Linux (PowerShell)
README
## Install docker tools
```
choco install -y docker docker-compose docker-machine
```## Useful commands
* Remove all containers:
```
docker ps --format "{{.ID}}" -a | % {docker rm $_}
```* Remove all container based on a specific image
```
docker ps -f ancestor=windowsservercore -a --format "{{.ID}}" | % {docker rm $_}
```* Remove all untagged (dangling) images
```
docker images -f dangling=true --format "{{.ID}}" | % {docker rmi $_}
```