7 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # Redeploys the OjusoMap stack
 | |
| THISDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
 | |
| cd $THISDIR/../
 | |
| sudo docker-compose up -d --build map
 | |
| cd $THISDIR
 |