Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

2023-10-30 updateAllContainers() function is wrong #744

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/docker_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,18 @@ def pruneVolumes():

def updateAllContainers():
print("Update All Containers:")
print("docker-compose down")
subprocess.call("docker-compose down", shell=True)
print("")
print("docker-compose pull")
subprocess.call("docker-compose pull", shell=True)
print("")
print("docker-compose build")
subprocess.call("docker-compose build", shell=True)
print("docker-compose build --no-cache --pull")
subprocess.call("docker-compose build --no-cache --pull", shell=True)
print("")
print("docker-compose up -d")
subprocess.call("docker-compose up -d", shell=True)
print("")
print("docker system prune -f")
subprocess.call("docker system prune -f", shell=True)
print("")
input("Process terminated. Press [Enter] to show menu and continue.")
needsRender = 1
return True
Expand Down