We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0154517 commit 4182ec9Copy full SHA for 4182ec9
1 file changed
aws/docker_and_sync.sh
@@ -22,6 +22,12 @@ cleanup() {
22
else
23
echo "No logs to sync"
24
fi
25
+ echo "Docker space usage:"
26
+ docker system df
27
+ echo "Docker cleanup"
28
+ docker system prune -af
29
30
31
exit $exit_code
32
}
33
@@ -60,6 +66,9 @@ done
60
66
# Smoke test
61
67
docker run hello-world
62
68
69
+echo "Docker space usage:"
70
+docker system df
71
+
63
72
# Pull images from ECR so we don't have to build them
64
73
export AWS_DOCKER_REGISTRY="039984708918.dkr.ecr.us-east-1.amazonaws.com"
65
74
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin $AWS_DOCKER_REGISTRY
0 commit comments