Skip to content

Commit 77b9ed3

Browse files
committed
Update build_docker.bat
Fixed docker mount directories to include whole project to prevent the need to specifically call out any added directories.
1 parent 637e7df commit 77b9ed3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build_docker.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
docker build -t dactyl-keyboard -f docker/Dockerfile .
2-
docker run --name DM-run -d -v "%cd%/src:/app/src" -v "%cd%/things:/app/things" -v "%cd%/things:/app/configs" dactyl-keyboard python3 -i dactyl_manuform.py
3-
docker run --name DM-config -d -v "%cd%/src:/app/src" -v "%cd%/things:/app/things" -v "%cd%/things:/app/configs" dactyl-keyboard python3 -i generate_configuration.py
4-
docker run --name DM-release-build -d -v "%cd%/src:/app/src" -v "%cd%/things:/app/things" -v "%cd%/things:/app/configs" dactyl-keyboard python3 -i model_builder.py
5-
docker run --name DM-shell -d -ti -v "%cd%/src:/app/src" -v "%cd%/things:/app/things" -v "%cd%/things:/app/configs" dactyl-keyboard
2+
docker run --name DM-run -d -v "%cd%/:/app" dactyl-keyboard python3 -i dactyl_manuform.py
3+
docker run --name DM-config -d -v "%cd%/:/app" dactyl-keyboard python3 -i generate_configuration.py
4+
docker run --name DM-release-build -d -v "%cd%/:/app" dactyl-keyboard python3 -i model_builder.py
5+
docker run --name DM-shell -d -ti -v "%cd%/:/app" dactyl-keyboard

0 commit comments

Comments
 (0)