mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api.git
synced 2026-09-21 16:52:00 -07:00
6 lines
115 B
Bash
Executable File
6 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Remove all untagged docker images.
|
|
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')
|
|
|