I hereby claim:
- I am oleeskild on github.
- I am oleeskild (https://keybase.io/oleeskild) on keybase.
- I have a public key ASBMWCUjBEPGS2Jql63V062PZK3twuThO2dXqETGyj1Tywo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
input{ | |
background: #fff; | |
background-clip: padding-box; | |
border: none; | |
border-radius: 0; | |
color: inherit; | |
font-family: FFScalaWeb,Georgia,serif; | |
font-size: 14px; | |
font-style: inherit; | |
font-weight: inherit; |
docker start
starts a container so it is running.docker stop
stops a running container.docker restart
stops and starts a container.docker pause
pauses a running container, "freezing" it in place.docker unpause
will unpause a running container.docker wait
blocks until running container stops.docker kill
sends a SIGKILL to a running container.docker attach
will connect to a running container.#!/bin/bash | |
# remove exited containers: | |
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v | |
# remove unused images: | |
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs -r docker rmi | |
# remove unused volumes: |
<p class="truncate-text">If I exceed one line's width, I will be truncated.</p> |
<div class="triangle"></div> |
<div class="reference"> | |
<div class="popout-menu"> | |
Popout menu | |
</div> | |
</div> |
<div class="overflow-scroll-gradient"> | |
<div class="overflow-scroll-gradient__scroller"> | |
Content to be scrolled | |
</div> | |
</div> |
.horizontal-and-vertical-centering { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} |