tobybatch / kimai2

Docker containers for the kimai2 web application including docker-compose and kubernetes/helm deployment.
MIT License
183 stars 97 forks source link

[FEATURE] build kimai version 2.0.14 #501

Closed bykof closed 1 year ago

bykof commented 1 year ago

Is your feature request related to a problem? Please describe. I want to test kimai version 2.0.14

Describe the solution you'd like Rebuild the docker images and push the version 2.0.14 :)

Additional context Thank you a lot for this repo!

tobybatch commented 1 year ago

2.x images are currently not supported. You can build your own, it shouldn't be too hard, something like:

docker build \
    -t my-pre-release-kimai:2.0.14 \
    --target=prod \
    --build-arg KIMAI=2.0.14 \
    --build-arg BASE=fpm \
    --build-arg TZ=Europe/London \
    .

Adjust the values as desired.

I'll look at the auto build but I don't want to impact the people using the :latest tag by mistake.

bykof commented 1 year ago

Alright thanks for the note!

tobybatch commented 1 year ago

@bykof Checkout #502 I'm building a custom image for this bug.

Do you want apache or fpm, prod or dev?

bykof commented 1 year ago

fpm prod :) thanks!

tobybatch commented 1 year ago

Closed in favout of #502