Remove the container update script
This commit is contained in:
parent
7ef34c76ea
commit
29a72ce939
1 changed files with 0 additions and 26 deletions
|
@ -1,26 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
|
||||
home = Path.home()
|
||||
container_scripts_dir = home / "sync/containers"
|
||||
volumes_dir = home / "volumes"
|
||||
|
||||
commands = (
|
||||
"fish " + str(container_scripts_dir / "gitea.fish"),
|
||||
"fish " + str(container_scripts_dir / "webhook.fish"),
|
||||
"python "
|
||||
+ str(volumes_dir / "advlabdb/repo/podman/deploy.py --skip-traefik --skip-nginx"),
|
||||
"fish " + str(container_scripts_dir / "nginx.fish"),
|
||||
"podman auto-update",
|
||||
)
|
||||
|
||||
for command in commands:
|
||||
subprocess.run(
|
||||
command,
|
||||
shell=True,
|
||||
check=True,
|
||||
)
|
||||
|
||||
print("\nDONE!\n")
|
Loading…
Reference in a new issue