mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 23:33:34 +00:00 
			
		
		
		
	which has been updated with bookworm, python 3.8, certbot 2.8.0 and node 20 Moved rootfs scripts as /bin is a symlink in bookworm
		
			
				
	
	
		
			23 lines
		
	
	
		
			677 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			677 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/command/with-contenv bash
 | |
| # shellcheck shell=bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| . /usr/bin/common.sh
 | |
| 
 | |
| if [ "$(id -u)" != "0" ]; then
 | |
| 	log_fatal "This docker container must be run as root, do not specify a user.\nYou can specify PUID and PGID env vars to run processes as that user and group after initialization."
 | |
| fi
 | |
| 
 | |
| if [ "$DEBUG" = "true" ]; then
 | |
| 	set -x
 | |
| fi
 | |
| 
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/10-usergroup.sh
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/20-paths.sh
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/30-ownership.sh
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/40-dynamic.sh
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/50-ipv6.sh
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/60-secrets.sh
 | |
| . /etc/s6-overlay/s6-rc.d/prepare/90-banner.sh
 |