We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b262f commit ae75d3eCopy full SHA for ae75d3e
Makefile
@@ -1,10 +1,12 @@
1
-DOCKER_NAME ?= dinghao188/rcore-tutorial
+DOCKER_NAME ?= rcore-tutorial-v3
2
.PHONY: docker build_docker
3
-
+
4
docker:
5
- docker run --rm -it --mount type=bind,source=$(shell pwd),destination=/mnt ${DOCKER_NAME}
+ docker run --rm -it -v ${PWD}:/mnt -w /mnt ${DOCKER_NAME} bash
6
7
build_docker:
8
docker build -t ${DOCKER_NAME} .
9
10
fmt:
- cd easy-fs; cargo fmt; cd ../easy-fs-fuse cargo fmt; cd ../os ; cargo fmt; cd ../user; cargo fmt; cd ..
11
+ cd easy-fs; cargo fmt; cd ../easy-fs-fuse cargo fmt; cd ../os ; cargo fmt; cd ../user; cargo fmt; cd ..
12
0 commit comments