Docker Integration

I am admittedly as new to this as new gets, but I'm struggling to get Docker integration to work the way it's described in documentation and the google-ing I've done so far. I have Homarr running as a Portainer stack with the Docker socket mounted as a volume, but I don't see the Docker icon on the Dashboard that it seems like I should expect to see.

Here's the stack definition:
version: '3'
#---------------------------------------------------------------------#
#     Homarr - A simple, yet powerful dashboard for your server.     #
#---------------------------------------------------------------------#
services:
  homarr:
    container_name: homarr
    image: ghcr.io/ajnart/homarr:latest
    restart: unless-stopped
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
      - /volume1/docker/homarr/configs:/app/data/configs
      - /volume1/docker/homarr/icons:/app/public/icons
      - /volume1/docker/homarr/data:/data
    ports:
      - '7575:7575'


Where did I go wrong? Or am I simply expecting something to exist because I'm watching and reading old content?

Thanks!
Solution
There is currently no docker icon on the dashboard (their used to be, and it will probably return).
Was this page helpful?