Modules/docker.ps1
# docker up function dcu { docker compose up $args } # container list function Get-DockerContainers { docker ps -a } # enter docker shell function de($containerId) { docker exec -it $containerId /bin/bash } function Remove-DockerContainersAll() { docker rm -f $(docker ps -all -q) $args } function Remove-DockerImagesAll() { docker rmi -f $(docker images -aq) $args } |