71 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| set -e
 | |
| set -o ignoreeof
 | |
| 
 | |
| echo "Bash script launching COSS_ARCHIVING..."
 | |
| 
 | |
| 
 | |
| # CHANGE ME ONCE!
 | |
| export CONTAINER_DATA=/mnt/media/@Bulk/COSS/Downloads/coss_archiving
 | |
| export UNAME=remy
 | |
| export U_ID=1000
 | |
| 
 | |
| 
 | |
| ### Main use cases ###
 | |
| if [[ $1 == "debug" ]]
 | |
| then
 | |
|     export DEBUG=true
 | |
|     export HEADFULL=true
 | |
|     export CODE=./
 | |
|     export ENTRYPOINT=/bin/bash
 | |
|     # since service ports does not open ports on implicitly started containers, also start geckodriver:
 | |
|     docker compose up -d geckodriver
 | |
| 
 | |
| elif [[ $1 == "production" ]]
 | |
| then
 | |
|     export DEBUG=false
 | |
| 
 | |
| elif [[ $1 == "build" ]]
 | |
| then
 | |
|     export DEBUG=false
 | |
|     shift
 | |
|     docker compose build "$@"
 | |
|     exit 0
 | |
| 
 | |
| 
 | |
| ### Manual Shutdown ###
 | |
| elif [[ $1 == "down" ]]
 | |
| then
 | |
|     docker compose down -t 0
 | |
|     exit 0
 | |
| 
 | |
| 
 | |
| 
 | |
| ### Edge cases -> for firefox ###
 | |
| elif [[ $1 == "edit_profile" ]]
 | |
| then
 | |
|     export CODE=./
 | |
|     export HEADFULL=true
 | |
| 
 | |
|     docker compose up -d geckodriver
 | |
|     sleep 5
 | |
|     docker compose exec  geckodriver /bin/bash /code/geckodriver/edit_profile.sh # inside the container
 | |
|     docker compose down -t 0
 | |
| 
 | |
| 
 | |
| ### Fallback ####
 | |
| else
 | |
|     echo "Please specify the execution mode (debug/production/build/edit_profile/down) as the first argument"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| 
 | |
| 
 | |
| shift # consumes the variable set in $1 so that $@ only contains the remaining arguments
 | |
| 
 | |
| docker compose run -it --service-ports "$@"
 | |
| 
 | |
| echo "Docker run finished, shutting down containers..."
 | |
| docker compose down -t 0
 | |
| echo "Bye!"
 |