User and Group Permissions don not show up

I want my users to change their own passwords, but I don’t see any permissions regarding User and Groups. All the other permission work as expected.

The Module shows as deactivated on the info page:

The logs are too long for me to post them here, but I posted them on github a well: Can't see permissions related to the user module in the page to assign permission to user · Issue #18734 · Dolibarr/dolibarr · GitHub

This setting is not on the module. From main menu go to User or User Group, tab “permissions”

Sorry, I was only allowed to add one screenshot.

The problem is that the User & Groups section in the Permissions Panel (both user and groups) is completely missing. I do see all the other permissions, but nothing related to passwords and user infos

Members are completely different thing/module.

Yes, I know. The problem is, that for the “User & Groups” Module, there are no permission settings at all. The “Members” Permission is just the next Module showing up, but there should be the U&G permissions as well, but there are nowhere to be found on the whole page

To have tgis missing it must be some thirdparty module or code interfering. Can you skype me at milenmk1?

I can skype you next week, thank you very much for your help!

I just tried a brand new docker install, but I still get the same behavior. So its maybe a problem with the docker image/container?

version: "2.2"

services:

  dolibarr:
    image: tuxgasy/dolibarr:latest
    container_name: testdolibarr
    restart: unless-stopped
    depends_on:
      - "dolibarrmysql"
    environment:
      # Database
      DOLI_DB_HOST: "dolibarrmysql"
      DOLI_DB_USER: "dolibarr"
      DOLI_DB_PASSWORD: "dbpassword"
      DOLI_DB_NAME: "dolibarr"
      # General
      DOLI_URL_ROOT: "https://dolibarr.example.org"
      DOLI_ADMIN_LOGIN: "admin"
      DOLI_ADMIN_PASSWORD: "adminpassword"
      # URL Proxy
      VIRTUAL_HOST: dolibarr.example.org
      LETSENCRYPT_HOST: dolibarr.example.org
      LETSENCRYPT_EMAIL: letsencrypt@example.org
    networks:
      - proxy
      - backend2

  dolibarrmysql:
    image: library/mariadb:latest
    container_name: dolibarr_db2
    restart: unless-stopped
    environment:
      MARIADB_RANDOM_ROOT_PASSWORD: 1
      MYSQL_DATABASE: "dolibarr"
      MYSQL_USER: "dolibarr"
      MYSQL_PASSWORD: "dbpassword"
    networks:
      - backend2

networks:
  proxy:
    external:
      name: proxy
  backend2: