mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			327 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			327 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#!/command/with-contenv /usr/bin/bash
 | 
						|
# shellcheck shell=bash
 | 
						|
declare -r log_prefix="[init-complete]"
 | 
						|
declare -r end_time=$(date +%s)
 | 
						|
declare -r start_time=${PAPERLESS_START_TIME_S}
 | 
						|
 | 
						|
echo "${log_prefix} paperless-ngx docker container init completed in $(($end_time-$start_time)) seconds"
 | 
						|
echo "${log_prefix} Starting services"
 |