diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-11-14 13:33:14 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-11-14 13:33:14 +0100 |
commit | 9b41dbdcb2c810804417b9ffc4e74a7b3e534ac2 (patch) | |
tree | c4cf9ace30d0cd35aebb6ac70f2be43b1371f5d6 /.local/bin/update |
initial commit
Diffstat (limited to '.local/bin/update')
-rwxr-xr-x | .local/bin/update | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.local/bin/update b/.local/bin/update new file mode 100755 index 0000000..3fc5067 --- /dev/null +++ b/.local/bin/update @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 + +import sys, os +import subprocess + + +# apt +subprocess.run(["sudo", "apt", "update"]) +subprocess.run(["sudo", "apt", "upgrade", "-y"]) + + +# docker +subprocess.run(["docker-compose-update-all"]) |