mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-31 16:13:45 +08:00 
			
		
		
		
	 4b2666b9d6
			
		
	
	4b2666b9d6
	
	
	
		
			
			Added the checks and some tests One of the tests wasn't valid docker-compose.yml, that's been changed. Bad config throws an error and has a test Signed-off-by: Jack Laxson <jackjrabbit@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			211 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			211 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3"
 | |
| 
 | |
| services:
 | |
|   db:
 | |
|     build: .
 | |
|     command: ./entrypoint.sh
 | |
|     image: docker.io/tonistiigi/db
 | |
|   webapp:
 | |
|     build:
 | |
|       context: .
 | |
|       dockerfile: Dockerfile.webapp
 | |
|       args:
 | |
|         buildno: 1 |