mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 05:24:13 +00:00 
			
		
		
		
	* fix(healthcheck): use default commands instead of yq this removes yq command and uses grep and awk to get port * fix: use correct config file * fix: install curl in runner instead of builder * fix: remove unused packages
		
			
				
	
	
		
			4 lines
		
	
	
	
		
			145 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			4 lines
		
	
	
	
		
			145 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| PORT=$(grep '^port:' /misskey/.config/default.yml | awk 'NR==1{print $2; exit}')
 | |
| curl -s -S -o /dev/null "http://localhost:${PORT}"
 |