]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Further simplyfying the docker usage
authorErik Dasque <erik@frenchguys.com>
Fri, 15 Jul 2016 17:26:34 +0000 (13:26 -0400)
committerErik Dasque <erik@frenchguys.com>
Fri, 15 Jul 2016 17:26:34 +0000 (13:26 -0400)
We'll be able to change the image user name if we set up the initial repo to trigger Docker images rebuilds on hub.docker.com

readme.md

index 7a970eea02e5ee2d2cc90cd782098f62695f1eb5..ecad173fa0b532999d91f12ce9a7c1f9e63d2893 100644 (file)
--- a/readme.md
+++ b/readme.md
@@ -77,18 +77,14 @@ Debian/Ubuntu example:
 
 ### Docker
 
-If this is a bit complex for you, Docker might be the turn-key solution you need. After installing [Docker](https://www.docker.com/products/docker), run the following commands at the root of the QMK folder:
+If this is a bit complex for you, Docker might be the turn-key solution you need. After installing [Docker](https://www.docker.com/products/docker), run the following command at the root of the QMK folder to build a keyboard/keymap:
 
 ```bash
-# You only need to run this once, it'll take a little while
-
-docker build -t qmk .
-
-# and you'll run this every time you want to build a keymap
+# You'll run this every time you want to build a keymap
 # modify the keymap and keyboard assigment to compile what you want
 # defaults are ergodox_ez/default
 
-docker run -e keymap=gwen -e keyboard=ergodox_ez --rm -v $('pwd'):/qmk:rw qmk
+docker run -e keymap=gwen -e keyboard=ergodox_ez --rm -v $('pwd'):/qmk:rw edasque/qmk_firmware
 
 ```