11 lines
		
	
	
		
			283 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			283 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/usr/bin/env bash
 | 
						|
#
 | 
						|
# Outer wrapper for invoking test.sh with config-next inside docker-compose.
 | 
						|
#
 | 
						|
 | 
						|
if type realpath >/dev/null 2>&1 ; then
 | 
						|
  cd "$(realpath -- $(dirname -- "$0"))"
 | 
						|
fi
 | 
						|
 | 
						|
exec docker compose -f docker-compose.yml -f docker-compose.next.yml run boulder ./test.sh "$@"
 |