From 80dd388393c302201df08c4f88b9cdac547a0cf5 Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Wed, 10 Jan 2018 17:48:38 +0100 Subject: [PATCH] Added "Building the docker image yourself" --- Building-the-docker-image-yourself.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Building-the-docker-image-yourself.md 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