Tots els compose

This commit is contained in:
Guillem Hernandez Sola
2026-06-30 13:12:37 +02:00
parent bebb2969f8
commit f1fe15d1b5
35 changed files with 2075 additions and 0 deletions

28
homarr/docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
# /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