mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-28 03:43:21 +10:00
5 lines
138 B
Bash
Executable file
5 lines
138 B
Bash
Executable file
# Remove all non desktop-environment containers
|
|
docker ps -a | \
|
|
grep -v desktop-environment | \
|
|
cut -b 1-20 | \
|
|
xargs docker rm -f
|