代码拉取完成,页面将自动刷新
VERSION=$(shell git describe --tags --always)
.PHONY: docker
docker: # Compile and build the docker | 编译并构建 docker 镜像
pnpm install
pnpm build
docker build -f Dockerfile -t ${DOCKER_USERNAME}/backend-ui:${VERSION} .
.PHONY: docker-not-build
docker-not-build: # Build the docker without compiling | 不编译直接构建镜像
docker build -f Dockerfile -t ${DOCKER_USERNAME}/backend-ui:${VERSION} .
.PHONY: publish-docker
publish-docker: # Publish the docker | 发布镜像
docker push ${DOCKER_USERNAME}/backend-ui:${VERSION}
.PHONY: run-docker
run-docker: # Run the docker image | 运行 docker 镜像
docker volume create backendui
docker run -d --name ${DOCKER_USERNAME}/backend-ui:${VERSION} -p 80:80 -v backendui:/etc/nginx --network docker-compose_simple-admin ${DOCKER_USERNAME}/backendui:${VERSION}
.PHONY: help
help: # Show help | 显示帮助
@grep -E '^[a-zA-Z0-9 -]+:.*#' Makefile | sort | while read -r l; do printf "\033[1;32m$$(echo $$l | cut -f 1 -d':')\033[00m:$$(echo $$l | cut -f 2- -d'#')\n"; done
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。