mirror of
				https://github.com/wazuh/wazuh-docker.git
				synced 2025-11-03 21:43:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			444 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			444 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
 | 
						|
 | 
						|
# It will run every .sh script located in entrypoint-scripts folder in lexicographical order
 | 
						|
for script in `ls /entrypoint-scripts/*.sh | sort -n`; do
 | 
						|
  bash "$script"
 | 
						|
 | 
						|
done
 | 
						|
 | 
						|
##############################################################################
 | 
						|
# Start Wazuh Server.
 | 
						|
##############################################################################
 | 
						|
 | 
						|
/sbin/my_init
 |