mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	* fix: pg pass printed by docker container (#1371) The "POSTGRES_PASSWORD" variable setting inside the entrypoint script of the rails docker container was printed in the logs when the container was run using docker compose. Fixed this by removing this password being set in this script. Added env file from root directory to the container Updated the tailwind evrsion in yarn lock * fix: moved pg database url check in the entrypoint to another helper created a new helper docker/entrypoints/helpers/pg_database_url.sh to parse the databse url and export the postgres host, user and port. With this the pg is_ready check falls to a common format rather than two formats depending on DATABASE_URL env variable is present or not. * fix: rename pg ready variable in rails entrypoint
		
			
				
	
	
		
			34 lines
		
	
	
		
			658 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			658 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -x
 | 
						|
 | 
						|
# Remove a potentially pre-existing server.pid for Rails.
 | 
						|
rm -rf /app/tmp/pids/server.pid
 | 
						|
rm -rf /app/tmp/cache/*
 | 
						|
 | 
						|
echo "Waiting for postgres to become ready...."
 | 
						|
 | 
						|
# Let DATABASE_URL env take presedence over individual connection params.
 | 
						|
# This is done to avoid printing the DATABASE_URL in the logs
 | 
						|
$(docker/entrypoints/helpers/pg_database_url.sh)
 | 
						|
PG_READY="pg_isready -h $POSTGRES_HOST -p $POSTGRES_PORT -U $POSTGRES_USERNAME"
 | 
						|
 | 
						|
until $PG_READY
 | 
						|
do
 | 
						|
  sleep 2;
 | 
						|
done
 | 
						|
 | 
						|
echo "Database ready to accept connections."
 | 
						|
 | 
						|
bundle install
 | 
						|
 | 
						|
BUNDLE="bundle check"
 | 
						|
 | 
						|
until $BUNDLE
 | 
						|
do
 | 
						|
  sleep 2;
 | 
						|
done
 | 
						|
 | 
						|
# Execute the main process of the container
 | 
						|
exec "$@"
 |