20 lines
		
	
	
		
			109 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			109 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| ##
 | |
| 
 | |
| reset;
 | |
| 
 | |
| clear;
 | |
| 
 | |
| ##
 | |
| 
 | |
| set -e;
 | |
| 
 | |
| set -x;
 | |
| 
 | |
| ##
 | |
| 
 | |
| docker-compose pull
 | |
| 
 | |
| docker-compose up --build -d
 |