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

Block or report marijus-ravickas

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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