修改vue docker 配置文件

This commit is contained in:
BBIT-Kai
2025-05-12 11:30:27 +08:00
parent 369980293e
commit cdaa958e75
5 changed files with 14 additions and 12 deletions
@@ -3,7 +3,7 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
LOG_FILE=${SCRIPT_DIR}/build-local-docker-image.log
ERROR=""
IMAGE_NAME="vben-admin-local"
IMAGE_NAME="ce-vue"
function stop_and_remove_container() {
# Stop and remove the existing container
@@ -36,7 +36,7 @@ function log_message() {
else
echo "docker image with tag '${IMAGE_NAME}' built sussessfully. Use below sample command to run the container"
echo ""
echo "docker run -d -p 8010:8080 --name ${IMAGE_NAME} ${IMAGE_NAME}"
echo "docker run -d -p 8010:8090 --name ${IMAGE_NAME} ${IMAGE_NAME}"
fi
}