Skip to content

Commit

Permalink
Merge pull request #744 from Paraphraser/20231030-updateAllContainers…
Browse files Browse the repository at this point in the history
…-master

2023-10-30 updateAllContainers() function is wrong
  • Loading branch information
Slyke authored Dec 16, 2023
2 parents 7373711 + 511b4a4 commit f096216
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit f096216

Please sign in to comment.