Skip to content

Instantly share code, notes, and snippets.

@p-web-git
Created November 1, 2025 16:22
Show Gist options
  • Select an option

  • Save p-web-git/a9d317b92153cc98069fb8c83d963b19 to your computer and use it in GitHub Desktop.

Select an option

Save p-web-git/a9d317b92153cc98069fb8c83d963b19 to your computer and use it in GitHub Desktop.
update docker containers in one script
#!/bin/bash
set -e
APP=$(hostname)
cd ~/"$APP-app"
docker compose pull && docker compose up -d
echo "Clean up unused docker images"
docker image prune -a -f
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment