Optionally build migrations
This commit is contained in:
		
							parent
							
								
									6511e7f32e
								
							
						
					
					
						commit
						5e09fadc3b
					
				
					 1 changed files with 20 additions and 12 deletions
				
			
		
							
								
								
									
										16
									
								
								build.sh
									
										
									
									
									
								
							
							
						
						
									
										16
									
								
								build.sh
									
										
									
									
									
								
							|  | @ -2,6 +2,7 @@ | ||||||
| 
 | 
 | ||||||
| BUILD_DATE=$(date) | BUILD_DATE=$(date) | ||||||
| VERSION=$1 | VERSION=$1 | ||||||
|  | MIGRATIONS=$2 | ||||||
| 
 | 
 | ||||||
| function require() { | function require() { | ||||||
|     if [ "$1" = "" ]; then |     if [ "$1" = "" ]; then | ||||||
|  | @ -15,10 +16,11 @@ function print_help() { | ||||||
|     echo "build.sh" |     echo "build.sh" | ||||||
|     echo "" |     echo "" | ||||||
|     echo "Usage:" |     echo "Usage:" | ||||||
|     echo "      build.sh [version]" |     echo "      build.sh [version] [migrations]" | ||||||
|     echo "" |     echo "" | ||||||
|     echo "Args:" |     echo "Args:" | ||||||
|     echo "      version: The version of the current container" |     echo "      version: The version of the current container" | ||||||
|  |     echo "      migrations: (optional) Whether to build the migrations container as well" | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| require "$VERSION" "version" | require "$VERSION" "version" | ||||||
|  | @ -46,6 +48,11 @@ docker build \ | ||||||
|     -t "asonix/relay:latest" \ |     -t "asonix/relay:latest" \ | ||||||
|     ./artifacts |     ./artifacts | ||||||
| 
 | 
 | ||||||
|  | docker push "asonix/relay:${VERSION}-arm64v8" | ||||||
|  | docker push "asonix/relay:latest-arm64v8" | ||||||
|  | docker push "asonix/relay:latest" | ||||||
|  | 
 | ||||||
|  | if [ "${MIGRATIONS}" = "" ]; then | ||||||
|     docker build \ |     docker build \ | ||||||
|         --pull \ |         --pull \ | ||||||
|         --no-cache \ |         --no-cache \ | ||||||
|  | @ -57,6 +64,7 @@ docker build \ | ||||||
|         -t "asonix/relay-migrations:latest" \ |         -t "asonix/relay-migrations:latest" \ | ||||||
|         ./artifacts |         ./artifacts | ||||||
| 
 | 
 | ||||||
| docker push "asonix/relay:${VERSION}-arm64v8" |     docker push "asonix/relay-migrations:${VERSION}-arm64v8" | ||||||
| docker push "asonix/relay:latest-arm64v8" |     docker push "asonix/relay-migrations:latest-arm64v8" | ||||||
| docker push "asonix/relay:latest" |     docker push "asonix/relay-migrations:latest" | ||||||
|  | fi | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue