Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/rcore_test/rCore-Tutorial-v3-tests/blame/commit/e68f261ed6c6ebf6c4fafbc7248f57c1cb9f1f16/Makefile You should set ROOT_URL correctly, otherwise the web may not work correctly.
rCore-Tutorial-v3-tests/Makefile

9 lines
219 B

DOCKER_NAME ?= dinghao188/rcore-tutorial
.PHONY: docker build_docker
docker:
docker run --rm -it --mount type=bind,source=$(shell pwd),destination=/mnt ${DOCKER_NAME}
build_docker:
docker build -t ${DOCKER_NAME} .