Skip to content

Instantly share code, notes, and snippets.

@BjornHofsvang
BjornHofsvang / docker-install-rpi3.md
Created July 17, 2020 10:45 — forked from tyrell/docker-install-rpi3.md
Installing latest Docker on a Raspberry Pi 3

Introduction

I wrote this gist to record the steps I followed to get docker running in my Raspberry Pi 3. The ARM ported debian version (Jessie) comes with an old version of docker. It is so old that the docker hub it tries to interact with doesn't work anymore :)

Hopefully this gist will help someone else to get docker running in their Raspberry Pi 3.

Installation

From original instructions at http://blog.hypriot.com/post/run-docker-rpi3-with-wifi/

@BjornHofsvang
BjornHofsvang / PsLocalDb.psm1
Created February 2, 2017 08:34 — forked from abombss/PsLocalDb.psm1
Powershell LocalDb Wrapper
function Start-LocalDb {
[CmdletBinding()]
param(
[Parameter(Mandatory,ValueFromPipeLine,Position=1)]
[psobject[]]$Instance,
[string]$ToolPath = (Find-LocalDbExe)
)
begin {
}