mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-12 23:32:09 +00:00
Upgrade to bullseye
This commit is contained in:
@@ -1,17 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Colors
|
||||
BLUE='\E[1;34m'
|
||||
CYAN='\E[1;36m'
|
||||
GREEN='\E[1;32m'
|
||||
RED='\E[1;31m'
|
||||
RESET='\E[0m'
|
||||
YELLOW='\E[1;33m'
|
||||
|
||||
export BLUE CYAN GREEN RED RESET YELLOW
|
||||
export BLUE='\E[1;34m'
|
||||
export CYAN='\E[1;36m'
|
||||
export GREEN='\E[1;32m'
|
||||
export RED='\E[1;31m'
|
||||
export RESET='\E[0m'
|
||||
export YELLOW='\E[1;33m'
|
||||
|
||||
# Docker Compose
|
||||
COMPOSE_PROJECT_NAME="npmdev"
|
||||
COMPOSE_FILE="docker/docker-compose.dev.yml"
|
||||
|
||||
export COMPOSE_FILE COMPOSE_PROJECT_NAME
|
||||
export COMPOSE_PROJECT_NAME="npmdev"
|
||||
export COMPOSE_FILE="docker/docker-compose.dev.yml"
|
||||
|
7
scripts/build_common.sh
Normal file
7
scripts/build_common.sh
Normal file
@@ -0,0 +1,7 @@
|
||||
export BLUE='\E[1;34m'
|
||||
export CYAN='\E[1;36m'
|
||||
export GREEN='\E[1;32m'
|
||||
export RED='\E[1;31m'
|
||||
export RESET='\E[0m'
|
||||
export YELLOW='\E[1;33m'
|
||||
|
@@ -3,12 +3,12 @@
|
||||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
. "$DIR/.common.sh"
|
||||
|
||||
DOCKER_IMAGE='baudneo/nginx-full:certbot-node'
|
||||
DOCKER_IMAGE='baudneo/nginx-full:bullseye-certbot-node'
|
||||
|
||||
# Ensure docker exists
|
||||
if hash docker 2>/dev/null; then
|
||||
|
||||
docker pull "${DOCKER_IMAGE}"
|
||||
# docker pull "${DOCKER_IMAGE}"
|
||||
cd "${DIR}/.."
|
||||
echo -e "${BLUE}❯ ${CYAN}Building Frontend ...${RESET}"
|
||||
docker run --rm -e CI=true -v "$(pwd)/frontend:/app/frontend" -v "$(pwd)/global:/app/global" \
|
||||
|
Reference in New Issue
Block a user