Docker Start error

Dear Community,

I have a following error:

Error: ✗ Get “https://grafana.com/api/plugins/repo/grafana-clock-panel”: context deadline exceeded (Client.Timeout exceeded while awaiting headers)

Can anyone help me out? I’m running a docker on Synology with the following Configuration:

grafana:
    image: grafana/grafana:latest
    container_name: grafana
    hostname: grafana
    networks:
      - grafana-net
    mem_limit: 512m
    cpu_shares: 512
    security_opt:
      - no-new-privileges:true
    user: 1026:100
    healthcheck:
      test: wget --no-verbose --tries=1 --spider http://localhost:3000/api/health
    ports:
      - 3340:3000
    volumes:
      - /volume1/docker/grafana/data:/var/lib/grafana:rw
    environment:
      TZ: Europe/Vienna
      GF_INSTALL_PLUGINS: grafana-clock-panel,grafana-simple-json-datasource,natel-discrete-panel,grafana-piechart-panel
    restart: on-failure:5

Hi @mlinko6,

Welcome to the :grafana: community support forums !!

We are excited that you joined our OSS community. Please read about some of the FAQs in the community :slight_smile:

Did you already check the documentation regarding Docker? i.e.

What I would suggest in your yaml is to define environments using “-” i.e.

Right now you have like this:

    environment:
      - GF_INSTALL_PLUGINS: grafana-clock-panel,grafana-simple-json-datasource,natel-discrete-panel,grafana-piechart-panel

To this:

    environment:
     - GF_INSTALL_PLUGINS=grafana-clock-panel, grafana-simple-json-datasource, natel-discrete-panel, grafana-piechart-panel

after comma “,” put a space and then enter the name of the next plugin

Let us know if this helps.