diff --git a/Building-the-docker-image-yourself.md b/Building-the-docker-image-yourself.md new file mode 100644 index 0000000..89922e3 --- /dev/null +++ b/Building-the-docker-image-yourself.md @@ -0,0 +1,12 @@ +If you do not want to use the docker image provided by docker hub, you can build it yourself. + +1. Without local git clone + `docker build -t zeiterfassung https://github.com/0xFEEDC0DE64/QtZeiterfassung.git` +2. Building from local git clone + ``` + git clone --recursive https://github.com/0xFEEDC0DE64/QtZeiterfassung.git + cd QtZeiterfassung/ + docker build -t zeiterfassung . + ``` + +Launching the tool can be done exactly the same way as described [[here|Launching-the-tool-with-docker]] (you just need to replace the docker image `0xfeedc0de64/qtzeiterfassung` with your locally built image `zeiterfassung`) \ No newline at end of file