mirror of
				https://github.com/shlinkio/shlink.git
				synced 2025-02-25 18:45:27 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Run docker containers if they are not up yet
 | 
						|
if ! [[ $(docker ps | grep shlink_swoole) ]]; then
 | 
						|
    docker compose up -d
 | 
						|
fi
 | 
						|
 | 
						|
docker exec -it shlink_swoole /bin/sh -c "$*"
 |