mirror of
				https://github.com/docker/compose.git
				synced 2025-11-04 05:34:09 +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"
 |