chore(repo): ajouter .gitkeep dans dossiers vides (hors .git*, tor_data)

This commit is contained in:
Debian 2025-09-08 15:19:37 +00:00
parent c7f9748718
commit 3ad6b25fc4
31 changed files with 41 additions and 1 deletions

0
data/.gitkeep Normal file
View File

View File

@ -292,6 +292,43 @@ services:
ipv4_address: 172.20.0.40
restart: unless-stopped
# IA locale: Ollama + AnythingLLM
ollama:
image: ollama/ollama:latest
container_name: 4nk-ollama
hostname: ollama.4nk.local
ports:
- "11434:11434"
environment:
- OLLAMA_HOST=0.0.0.0
volumes:
- ./modules/local_IA/data:/root/.ollama
- ./modules/local_IA/logs:/var/log/ollama
networks:
4nk_network:
ipv4_address: 172.20.0.50
restart: unless-stopped
anythingllm:
image: mintplexlabs/anythingllm:latest
container_name: 4nk-anythingllm
hostname: anythingllm.4nk.local
ports:
- "3001:3001"
environment:
- SERVER_PORT=3001
- OLLAMA_URL=http://ollama.4nk.local:11434
volumes:
- ./modules/local_IA/conf:/app/config
- ./modules/local_IA/data:/app/storage
- ./modules/local_IA/logs:/app/logs
networks:
4nk_network:
ipv4_address: 172.20.0.51
depends_on:
- ollama
restart: unless-stopped
# Profil monitoring: Loki + Promtail + Grafana
loki:
image: grafana/loki:2.9.0

View File

@ -22,6 +22,8 @@
| coffre_front | coffre-front.4nk.local | 172.20.0.32 | 3003 | logs:/logs | /coffre/ → :3003 | — |
| coffre_back_mini | coffre-back-mini.4nk.local | 172.20.0.33 | — | — | — | — |
| nginx | nginx.4nk.local | 172.20.0.40 | 80 | conf:/etc/nginx, logs:/var/log/nginx | reverse proxy + /grafana/ | — |
| ollama | ollama.4nk.local | 172.20.0.50 | 11434 | data:/root/.ollama, logs:/var/log/ollama | /ollama/ → :11434 | — |
| anythingllm | anythingllm.4nk.local | 172.20.0.51 | 3001 | conf:/app/config, data:/app/storage, logs:/app/logs | /anythingllm/ → :3001 | ollama |
### Observabilité
- Promtail lit: `./log/**/*.log`, `./modules/*/logs/**/*.log`, `./projects/*/*/logs/**/*.log` et pousse vers Loki.

View File

@ -43,4 +43,5 @@
- WSL2 (Docker dans WSL): accéder via le navigateur Windows à `http://localhost/`. Si non accessible, utiliser lIP WSL (`wsl hostname -I` côté PowerShell) et ouvrir `http://<IP_WSL>/`.
- VM Linux (HyperV/VirtualBox/VMware): utiliser lIP de la VM (`ip addr` dans la VM) et ouvrir `http://<IP_VM>/`.
- Les routes exposées par Nginx: `/`, `/blindbit/`, `/sdk_storage/`, `/relay1/`, `/relay2/`, `/relay3/`, `/signer/`, `/coffre/`, `/grafana/`.
- Les routes exposées par Nginx: `/`, `/blindbit/`, `/sdk_storage/`, `/relay1/`, `/relay2/`, `/relay3/`, `/signer/`, `/coffre/`, `/grafana/`.
- IA locale: `/ollama/` (API Ollama), `/anythingllm/` (AnythingLLM)

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

0
modules/tor/log/.gitkeep Normal file
View File