mirror of
				https://github.com/hoellen/dockerfiles.git
				synced 2025-11-04 00:06:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			730 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			730 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
addgroup -g ${GID} owncloud && adduser -h /owncloud -s /bin/sh -D -G owncloud -u ${UID} owncloud
 | 
						|
 | 
						|
if [ -f /owncloud/config/config.php ] && [ ! -f /config/config.php ]; then
 | 
						|
  cp /owncloud/config/config.php /config/config.php
 | 
						|
elif [ -f /config/config.php ]; then
 | 
						|
  if [ -f /owncloud/config/config.php ]; then
 | 
						|
    sed -i "s/.*version.*/`grep "version" \/owncloud\/config\/config.php`/" /config/config.php
 | 
						|
  fi
 | 
						|
  mv /owncloud/config/config.php /config/config.php.bkp
 | 
						|
  cp /config/config.php /owncloud/config/config.php
 | 
						|
fi
 | 
						|
 | 
						|
touch /var/run/php-fpm.sock
 | 
						|
chown -R owncloud:owncloud /owncloud /data /config /apps2 /var/run/php-fpm.sock /var/lib/nginx /tmp
 | 
						|
ln -s /apps2 /owncloud
 | 
						|
 | 
						|
supervisord -c /etc/supervisor/supervisord.conf
 |