Skip to content

Instantly share code, notes, and snippets.

@nordineb
Last active July 9, 2018 13:08
Show Gist options
  • Save nordineb/d0e111900e2fcefacd10df89a9e5d7d5 to your computer and use it in GitHub Desktop.
Save nordineb/d0e111900e2fcefacd10df89a9e5d7d5 to your computer and use it in GitHub Desktop.
docker seq

Use powershell og bash

#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)

diginc/pi-hole                               latest                    bb640716ae33        2 months ago        363MB
azuresdk/azure-cli-python                    latest                    7424f32d32f1        3 months ago        368MB
microsoft/powershell                         latest                    fac6e72fe47a        3 months ago        354MB
azuresdk/azure-cli-python                    <none>                    277bb4c7b119        4 months ago        367MB
revolutionsystems/python                     3.6.3-wee-optimized-lto   485539d7c9c5        4 months ago        226MB
jess/rainbowstream                           latest                    bf5c42739966        5 months ago        257MB
alpine                                       latest                    e21c333399e0        5 months ago        4.14MB
docker4w/nsenter-dockerd                     latest                    cae870735e91        6 months ago        187kB
diginc/pi-hole                               alpine_v3.1.4             827002682434        6 months ago        143MB
azuresdk/azure-powershell-core-experiments   latest                    54ce0d99a56e        7 months ago        422MB
microsoft/azure-cli                          latest                    ca9dd8f37b28        10 months ago       544MB
lbosqmsft/mssql-python-pyodbc                latest                    325cfda2c7fc        14 months ago       652MB


docker volume create seq-data
docker run --platform linux -it -p 5341:5341 -e ACCEPT_EULA=Y -v d:/temp/seq-log:/data datalust/seq
docker run --platform linux -it -p 5341:5341 -e ACCEPT_EULA=Y --mount source=seq-log,target=/data datalust/seq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment