# /opt/stacks/homarr/docker-compose.yml services: homarr: image: ghcr.io/ajnart/homarr:latest container_name: homarr restart: unless-stopped ports: - "7575:7575" # Interfície web (només local) volumes: - /var/run/docker.sock:/var/run/docker.sock:ro # :ro = només lectura - homarr_configs:/app/data/configs # Configuració - homarr_icons:/app/public/icons # Icones personalitzades - homarr_data:/data # Dades persistents environment: TZ: Europe/Madrid networks: - shared_net volumes: homarr_configs: homarr_icons: homarr_data: networks: shared_net: external: true name: shared_net