Cheatsheet
Cheatsheets for common technology tools
Docker Cheatsheet
Installation# Linux$ curl -sSL https://get.docker.com/ | sh # Mac - Install with brew (https://brew.sh/)$ brew cask install docker Check Version# Just show the version$ docker version --format ‘{{.Server.Version}}’19.03.8 # Short version$ docker --versionDocker version 19.03.8, build afac…
Multipass Cheatsheet
Launch an instance using default current Ubuntu LTS$ multipass launch --name ubuntu-lts Run commands in that instance and exit when done$ multipass exec <name> -- lsb_release -a Enter shell of the instance$ multipass shell <name> List instances$ multipass list Stop and start instances$ mult…
DVC - Data Version Control Cheatsheet
Setting upFirst thing to do in a brand new directory is to initialise git and dvc. git initdvc init Next, we create a data directory and then use dvc get to get data from a dataregistry into our local machine. dvc get is like a wrapper for wget or curlwhere it downloads data from dvc reposito…