mirror of
https://github.com/luzifer-docker/docker-clean.git
synced 2024-11-09 14:30:07 +00:00
Knut Ahlers
6924335526
this seems sometimes to be required as the Docker daemon looses the reference and does not display the name in `docker ps -a` output... Signed-off-by: Knut Ahlers <knut@ahlers.me>
12 lines
170 B
Docker
12 lines
170 B
Docker
FROM alpine:3.8
|
|
|
|
RUN set -ex \
|
|
&& apk --no-cache add \
|
|
bash \
|
|
docker \
|
|
gawk \
|
|
jq
|
|
|
|
COPY docker-clean /usr/local/bin/
|
|
|
|
ENTRYPOINT ["docker-clean"]
|