# /opt/stacks/glance/docker-compose.yml services: glance: image: glanceapp/glance:latest container_name: glance restart: unless-stopped ports: - "127.0.0.1:8080:8080" # Interfície web (només local) volumes: - ./glance.yml:/app/glance.yml:ro # Configuració principal - ./assets:/app/assets:ro # Assets locals (icones, imatges) environment: TZ: Europe/Madrid networks: - shared_net networks: shared_net: external: true name: shared_net