Pwsh> docker container inspect (docker container ls | Select -First 1).id
Pwsh> docker container inspect (docker container ls | Select -First 1).id
That lets you pipe commands.
You could stop any container with a specific name:
🐒pwsh>
docker container ls
| ? Image -eq 'my-stuff'
| docker container stop
That lets you pipe commands.
You could stop any container with a specific name:
🐒pwsh>
docker container ls
| ? Image -eq 'my-stuff'
| docker container stop
( The character limit is rough )
( The character limit is rough )
> Jaykul: certificate revocation list lookups require network calls, and don't get cached. So it can be really bad for signed modules
> Jaykul: certificate revocation list lookups require network calls, and don't get cached. So it can be really bad for signed modules
[ValidateScript({return ($_ % 2)})] $odd = 3
[ValidateScript({return ($_ % 2)})] $odd = 3