Added "Building the docker image yourself"

Daniel Brunner
2018-01-10 17:48:38 +01:00
parent dc10020c08
commit 80dd388393

@@ -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`)