Skip to content

Instantly share code, notes, and snippets.

View wrasdf's full-sized avatar
:octocat:
Working with github

kerry wang wrasdf

:octocat:
Working with github
  • Senior Devops Engineer At Zip
  • Melbourne
  • 13:37 (UTC -12:00)
View GitHub Profile
@wrasdf
wrasdf / Dockerfile-py
Created July 11, 2018 09:43
Dockerfile-py
FROM python:alpine3.7
WORKDIR /app
RUN apk --update add gcc musl-dev libffi-dev python3-dev openssl-dev make bash jq curl && \
rm -rf /tmp/* /var/cache/apk/*
COPY requirements.txt /app
RUN pip install -r /app/requirements.txt
@wrasdf
wrasdf / docker-cleanup-resources.md
Created June 20, 2018 07:05 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm