Skip to content

Commit

Permalink
Update build_docker.bat
Browse files Browse the repository at this point in the history
Fixed docker mount directories to include whole project to prevent the need to specifically call out any added directories.
  • Loading branch information
joshreve committed Nov 28, 2021
1 parent 637e7df commit 77b9ed3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build_docker.bat
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 77b9ed3

Please sign in to comment.