mirror of
				https://github.com/docker/compose.git
				synced 2025-10-29 18:23:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			242 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			242 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -ex
 | |
| 
 | |
| ./script/clean
 | |
| 
 | |
| TAG="docker-compose"
 | |
| docker build -t "$TAG" . | tail -n 200
 | |
| docker run \
 | |
|     --rm --entrypoint="script/build/linux-entrypoint" \
 | |
|     -v $(pwd)/dist:/code/dist \
 | |
|     -v $(pwd)/.git:/code/.git \
 | |
|     "$TAG"
 |