deCONZ with docker-compose

I’ve been trying to install deCONZ with docker-compose for hours. The first time everything worked great. Then I updated the image. When I try to restart the container now, I only get error messages:

Attaching to deCONZ
deCONZ    | [marthoc/deconz] Starting deCONZ...
deCONZ    | [marthoc/deconz] Current deCONZ version: 2.06.00
deCONZ    | [marthoc/deconz] Web UI port: 80
deCONZ    | [marthoc/deconz] Websockets port: 443
deCONZ    | [marthoc/deconz] VNC Disabled
deCONZ    | QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
deCONZ    | libpng warning: iCCP: known incorrect sRGB profile
deCONZ    | This plugin does not support propagateSizeHints()

I know that this topic has been discussed here many times, but somehow I can’t find a suitable answer.

this is what my docker-compose file looks like:

version: "3.2"
services: 
  deconz:
    image: marthoc/deconz
    privileged: true
    container_name: deCONZ
    network_mode: host    
    restart: always
    volumes:
      - type: bind     
        source: /home/pi/share/deCONZ 
        target: /root/.local/share/dresden-elektronik/deCONZ 
    devices:
      - /dev/ttyUSB0
    environment:
      - TZ=Europe/Berlin
      - DECONZ_WEB_PORT=80
      - DECONZ_WS_PORT=443
      - DEBUG_INFO=1
      - DEBUG_APS=0
      - DEBUG_ZCL=0
      - DEBUG_ZDP=0
      - DEBUG_OTAU=0