Pinned Loading
-
Shell script to install Docker CE on...
Shell script to install Docker CE on ubuntu and post-install user configuration 1#!/bin/bash
2sudo apt-get install -y \
3apt-transport-https \
4ca-certificates \
5curl \
-
Cleans the old images and exited con...
Cleans the old images and exited containers 1# Clean the exited containers
2docker rm $(sudo docker ps -a | grep Exit | cut -d ' ' -f 1)
34# Clean the untagged images (or old images)
5docker rmi $(docker images | tail -n +2 | awk '$1 == "<none>" {print $'3'}')
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.