mirror of
				https://github.com/termux/termux-packages.git
				synced 2025-10-31 13:26:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			731 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			731 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
| # PowerShell script to update Termux Package Builder Docker Image
 | |
| #
 | |
| # Usage example:
 | |
| #
 | |
| # .\scripts\update-docker.ps1
 | |
| 
 | |
| Set-Variable -Name CONTAINER -Value "termux-package-builder"
 | |
| Set-Variable -Name IMAGE -Value "ghcr.io/termux/package-builder"
 | |
| 
 | |
| docker pull $IMAGE
 | |
| 
 | |
| Set-Variable -Name LATEST -Value (docker inspect --format "{{.Id}}" $IMAGE)
 | |
| Set-Variable -Name RUNNING -Value (docker inspect --format "{{.Image}}" $CONTAINER)
 | |
| 
 | |
| if ($LATEST -eq $RUNNING) {
 | |
|     Write-Output "Image '$IMAGE' used in the container '$CONTAINER' is already up to date"
 | |
| } else {
 | |
|     Write-Output "Image '$IMAGE' used in the container '$CONTAINER' has been updated - removing the outdated container"
 | |
|     docker stop $CONTAINER
 | |
|     docker rm -f $CONTAINER
 | |
| }
 |