mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 18:59:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			594 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			594 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Launches dev instances of DataHub images. See documentation for more details.
 | |
| # YOU MUST BUILD VIA GRADLE BEFORE RUNNING THIS.
 | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
 | |
| cd $DIR && \
 | |
|   COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose \
 | |
|     -f docker-compose.yml \
 | |
|     -f docker-compose.override.yml \
 | |
|     -f docker-compose.dev.yml \
 | |
|     pull \
 | |
| && \
 | |
|   COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose -p datahub \
 | |
|     -f docker-compose.yml \
 | |
|     -f docker-compose.override.yml \
 | |
|     -f docker-compose.dev.yml \
 | |
|     up --build $@
 | 
