Wine-Tracker | Home Assistant App (Add-on)

Hej, I built the Wine Tracker: GitHub - xenofex7/ha-wine-tracker

I used to track my wines on Vivino, but they moved to a subscription model a while ago. After that I used the Notes app for a long time, but was never really happy with it.
Home Assistant is always running anyway - so it’s a perfect fit to have it right there. That’s why I made this App (Add-on).

If you’re interested and want to contribute, give feedback, or help build it further → feel free to join in!

3 Likes

This looks cool, Domain also have a standalone docker version?

there’s no standalone docker version at the moment, but if there’s interest, I’d be happy to look into it :slight_smile:

I would be interested:)

1 Like

Hej @keen4e

Great news → Wine Tracker v1.5.0 now ships as a standalone Docker image! No Home Assistant required.

Getting started is simple:

services:
  wine-tracker:
    image: ghcr.io/xenofex7/wine-tracker:latest
    ports:
      - "5050:5050"
    volumes:
      - wine-data:/data
    environment:
      - AUTH_ENABLED=true
      - USERS=admin:changeme
      - SECRET_KEY=change-this-to-a-random-string
      - LANGUAGE=en
      - CURRENCY=EUR
    restart: unless-stopped

volumes:
  wine-data:

Then just docker-compose up -d and open http://localhost:5050.

It took a while to get here, but the Docker version includes user authentication, readonly roles, and all the same features (AI label recognition, Vivino search, statistics). Multi-arch images (amd64 + arm64) are available on GHCR.

Full setup guide with all options: README → Docker Standalone

If you run into any issues, don’t hesitate to reach out - happy to help!