Skip to content
View marijus-ravickas's full-sized avatar
🌴
🌴

Block or report marijus-ravickas

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. oneliners.md oneliners.md
    1
    ## removing images
    2
    docker image rm $(docker images | grep with-db-certs | awk '{ print $1":"$2}')
    3
    
                  
    4
    ## removing untaged images
    5
    docker images | egrep '\<none\>' | awk '{print $3}' | xargs -I {} docker image rm {}
  2. dgoss.md dgoss.md
    1
    ## Installation
    2
    
                  
    3
    ```bash
    4
    curl -L https://raw.githubusercontent.com/aelsabbahy/goss/master/extras/dgoss/dgoss -o /usr/local/bin/dgoss
    5