mirror of
https://github.com/linuxserver/libreelec-addon-repo.git
synced 2026-02-20 01:00:59 +08:00
7 lines
223 B
Python
7 lines
223 B
Python
import xbmc
|
|
import xbmcgui
|
|
from subprocess import call
|
|
|
|
call(["docker", "container", "prune", "-f"])
|
|
xbmcgui.Dialog().notification('Docker Image Updater', 'All stopped containers removed!', xbmcgui.NOTIFICATION_INFO, 5000)
|