mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-10-31 20:23:36 +00:00 
			
		
		
		
	 727aebd6a3
			
		
	
	
		727aebd6a3
		
	
	
	
	
		
			
			The standard Alpine package should not install docker glue, so remove it from the APKBUILD and install it in the Dockerfile instead.
		
			
				
	
	
		
			13 lines
		
	
	
		
			144 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			144 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| ##
 | |
| # For volume mounts...
 | |
| ##
 | |
| chown -R frr:frr /etc/frr
 | |
| /usr/lib/frr/frrinit.sh start
 | |
| 
 | |
| # Sleep forever
 | |
| exec tail -f /dev/null
 |