2022-11-18 23:33:15 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Uses the qmk container found here:
|
|
|
|
# https://git.betalupi.com/Mark/docker
|
|
|
|
#
|
|
|
|
# Be careful, it may not be using the latest QMK.
|
|
|
|
|
2022-11-20 20:45:13 -08:00
|
|
|
docker run -it --rm \
|
2022-11-18 23:33:15 -08:00
|
|
|
--user $(id -u):$(id -g) \
|
|
|
|
-v "$(pwd)/output:/build_output" \
|
|
|
|
-v "$(pwd)/keyboards:/qmk_firmware/keyboards:ro" \
|
|
|
|
-e QMK_TARGET="betalupi_ergodox:default" \
|
|
|
|
git.betalupi.com/mark/qmk
|