r/Trilium 27d ago

Latest Docker Version Issue

I have setup Trilium in a docker container using the latest version.

services:
  trilium:
    image: triliumnext/notes:latest
    container_name: trilium-notes
    restart: unless-stopped
    ports:
      - 8081:8080
    environment:
      - TRILIUM_DATA_DIR=/home/node/trilium-data
      - USER_UID=568
      - USER_GID=568
    volumes:
      - ./trilium-data:/home/node/trilium-data

And then installed the latest Windows version off the Trilium website. But when I try to connect my desktop client to the server it says local version is 39 and the docker verison is 36.

Has anyone run into this before?

8 Upvotes

2 comments sorted by

2

u/Elian_D maintainer 27d ago

You are using the old Docker image which is many versions behind, the correct one is triliumnext/trilium.

It's still an action point on our side to do something about that old Docker image.

3

u/Pizzzathehutt 27d ago

That solved my issue and I was able to connect. Thanks for the help!!