代码拉取完成,页面将自动刷新
#.PHONY: up logs up-tag down build build-tag ps config exec restart
env := ${env}
HOME_ENV := ${HOME}/.env
CURRENT_ENV := .env.example
env-file := $(CURRENT_ENV)
ifndef ENV_FILE
ifneq ($(wildcard $(HOME_ENV)),)
env-file := $(HOME_ENV)
else
WARN_MSG := $(warning WARNING: ${HOME_ENV} not found and no ENV_FILE provided, using .env.example instead)
endif
else
env-file := $(ENV_FILE)
endif
compose-file := docker-compose.yml
ifdef COMPOSE_FILE
compose-file := $(COMPOSE_FILE)
endif
cmd = docker-compose -f $(compose-file) --env-file $(env-file)
tag := $(tag)
service := $(word 1,$(MAKECMDGOALS))
.PHONY: fastup
fastup:
docker-compose -f docker-compose-for-fastup.yml --env-file .env.example up -d --build --remove-orphans
docker-compose -f docker-compose-for-fastup.yml --env-file .env.example restart nginx web
.PHONY: up
up:
$(cmd) up -d --build --remove-orphans
$(cmd) restart nginx
$(cmd) restart web
.PHONY: up-no-build
up-no-build:
$(cmd) up -d --remove-orphans
$(cmd) restart nginx
$(cmd) restart web
.PHONY: up-tag
up-tag:
export TAG=$(tag); $(cmd) up -d --build --remove-orphans
$(cmd) restart nginx
$(cmd) restart web
.PHONY: down
down:
$(cmd) down
.PHONY: build
build:
# build latest
$(cmd) build
git-tag:
git checkout $(tag)
.PHONY: build-tag
build-tag:git-tag
# Build the image with the tag
export TAG=$(tag); $(cmd) build
.PHONY: config
config:
$(cmd) config
.PHONY: ps
ps:
$(cmd) ps
.PHONY: logs
logs:
$(cmd) logs -f app celery-worker web nginx
.PHONY: restart
restart:
$(cmd) restart $(service)
.PHONY: exec
exec:
$(cmd) exec $(service) /bin/bash
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。