mirror of
				https://gitlab.com/alemaire/buildx.git
				synced 2025-01-17 13:58:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			537 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			537 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include keycloak/keycloak.version
 | |
| 
 | |
| keycloak-nopush:
 | |
| 	docker buildx build --platform linux/amd64 --load \
 | |
| 	    --build-arg KEYCLOAK_VERSION=$(KEYCLOAK_VERSION) \
 | |
| 	    --tag alemairebe/keycloak:$(KEYCLOAK_VERSION) keycloak
 | |
| 
 | |
| keycloak:
 | |
| 	docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
 | |
| 	    --build-arg KEYCLOAK_VERSION=$(KEYCLOAK_VERSION) \
 | |
| 	    --cache-from=type=registry,ref=alemairebe/keycloak \
 | |
| 	    --cache-to=type=registry,ref=alemairebe/keycloak \
 | |
| 	    --tag alemairebe/keycloak:$(KEYCLOAK_VERSION) keycloak
 |