mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 09:25:15 +00:00 
			
		
		
		
	frontend doesn't include when building in react version adds swagger for existing dns-providers endpoint
		
			
				
	
	
		
			25 lines
		
	
	
		
			701 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			701 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash -e
 | 
						||
 | 
						||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
 | 
						||
. "$DIR/../.common.sh"
 | 
						||
 | 
						||
DOCKER_IMAGE=nginxproxymanager/nginx-full:certbot-node
 | 
						||
 | 
						||
# Ensure docker exists
 | 
						||
if hash docker 2>/dev/null; then
 | 
						||
	docker pull "${DOCKER_IMAGE}"
 | 
						||
	cd "${DIR}/../.."
 | 
						||
	echo -e "${BLUE}❯ ${CYAN}Building Frontend ...${RESET}"
 | 
						||
 | 
						||
	docker run --rm \
 | 
						||
		-e CI=true \
 | 
						||
		-e NODE_OPTIONS=--openssl-legacy-provider \
 | 
						||
		-v "$(pwd)/frontend:/app/frontend" \
 | 
						||
		-w /app/frontend "${DOCKER_IMAGE}" \
 | 
						||
		sh -c "yarn install && yarn lint && yarn build && chown -R $(id -u):$(id -g) /app/frontend"
 | 
						||
 | 
						||
	echo -e "${BLUE}❯ ${GREEN}Building Frontend Complete${RESET}"
 | 
						||
else
 | 
						||
	echo -e "${RED}❯ docker command is not available${RESET}"
 | 
						||
fi
 |