forked from GNUsocial/gnu-social
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
translate_container_name () {
 | 
						|
    if docker container inspect "$1" > /dev/null 2>&1; then
 | 
						|
        echo "$1"
 | 
						|
    else
 | 
						|
        echo "$1" | sed 'y/_/-/'
 | 
						|
    fi
 | 
						|
}
 | 
						|
 | 
						|
docker exec "$(translate_container_name tooling_php_1)" /var/tooling/phpstan.sh "$@"
 |