diff options
author | Joshua Shreve <j.a.shreve@gmail.com> | 2021-11-28 16:09:13 -0500 |
---|---|---|
committer | Joshua Shreve <j.a.shreve@gmail.com> | 2021-11-28 16:09:13 -0500 |
commit | 77b9ed3208260e254cc32d54e3afe55991ecbe94 (patch) | |
tree | f085f9709cfa3336cdfb79f474a3a49420fa077a | |
parent | 637e7dfe7d1ae210c65a5c0ec5e933b564602bf5 (diff) |
Update build_docker.bat
Fixed docker mount directories to include whole project to prevent the need to specifically call out any added directories.
-rw-r--r-- | build_docker.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build_docker.bat b/build_docker.bat index e2cfc1b..6df8be6 100644 --- a/build_docker.bat +++ b/build_docker.bat @@ -1,5 +1,5 @@ docker build -t dactyl-keyboard -f docker/Dockerfile . -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 -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 -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 -docker run --name DM-shell -d -ti -v "%cd%/src:/app/src" -v "%cd%/things:/app/things" -v "%cd%/things:/app/configs" dactyl-keyboard +docker run --name DM-run -d -v "%cd%/:/app" dactyl-keyboard python3 -i dactyl_manuform.py +docker run --name DM-config -d -v "%cd%/:/app" dactyl-keyboard python3 -i generate_configuration.py +docker run --name DM-release-build -d -v "%cd%/:/app" dactyl-keyboard python3 -i model_builder.py +docker run --name DM-shell -d -ti -v "%cd%/:/app" dactyl-keyboard |