Linux

  • NixOS
  • Bash for noobs

Docker

  • Getting started
  • Useful Docker commands

Powershell

  • Useful scripts
  • Terminal & PowerShell

Build tool & automation

  • Maven

Other

  • Falcon LogScale
  • Git
  • Regex

Windows

  • AutoHotkey
  • Komorebi
  • Windows Subsystem for Linux
  • Home
  • Docker

Docker

Getting started

  14 Mar 2023

Install Docker


Windows

  • Download Docker for Windows from www.docker.com
  • Check the system requirements for Docker: …
 Docker   Linux   Windows 

Useful Docker commands

  14 Mar 2023

Basic Docker commands

List all local images

docker images

The above is the same as:

docker image ls
The parameter -q will ensure only Ids are …
 Docker