diff options
author | npoirey <nicolas.poirey@gmail.com> | 2016-10-07 17:18:19 +0200 |
---|---|---|
committer | npoirey <nicolas.poirey@gmail.com> | 2016-10-07 17:21:38 +0200 |
commit | 628a48c7887e20a69b5a8c84cff956ba2ec7fed2 (patch) | |
tree | bd668ef15f9abaf0ad9b19221616efc8e0f9f7df | |
parent | 1048a588c750e27ff0f900cd6aaf670e034086d0 (diff) | |
download | qmk_firmware-628a48c7887e20a69b5a8c84cff956ba2ec7fed2.tar.gz qmk_firmware-628a48c7887e20a69b5a8c84cff956ba2ec7fed2.zip |
Updated Readme to help windows users use docker for build
-rw-r--r-- | readme.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -140,6 +140,9 @@ If this is a bit complex for you, Docker might be the turn-key solution you need | |||
140 | 140 | ||
141 | docker run -e keymap=gwen -e keyboard=ergodox --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware | 141 | docker run -e keymap=gwen -e keyboard=ergodox --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware |
142 | 142 | ||
143 | # On windows docker seems to have issue with VOLUME tag in Dockerfile, and $('pwd') won't print a windows compliant path, use full path instead like this | ||
144 | docker run -e keymap=default -e keyboard=ergobop --rm -v D:/Users/Sacapuces/Documents/Repositories/qmk:/qmk:rw edasque/qmk_firmware | ||
145 | |||
143 | ``` | 146 | ``` |
144 | 147 | ||
145 | This will compile the targetted keyboard/keymap and leave it in your QMK directory for you to flash. | 148 | This will compile the targetted keyboard/keymap and leave it in your QMK directory for you to flash. |