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 stop $(docker ps -a -q) && docker rm $(docker ps -a -q) $args } function Remove-DockerImagesAll() { docker rmi -f $(docker images -aq) $args } |