Skip to content

v2.44.0

Latest
Compare
Choose a tag to compare
@vsimakhin vsimakhin released this 13 Dec 09:07
· 1 commit to main since this release
  • Update: Update golang packages.
  • Fix: Add database schema version and check, so the app will not recreate DB views on every start up.
  • Update: There are few major updates for the docker files and image containers
    • The base image changed from debian:bookworm-slim to alpine, which reduced the container image size 3x - from 104MB to 37MB
    • The image supports linux/amd64 and linux/arm64 now
    • The entrypoint and cmd are changed. If you don't see data with the new image try to remove ./web-logbook from the command
    # old image
    ENTRYPOINT ["./web-logbook", "-dsn", "/data/web-logbook.sql"]
    
    # new image
    ENTRYPOINT ["./web-logbook" ]
    CMD ["-dsn", "/data/web-logbook.sql"]