chore(repo): ajouter .gitkeep dans dossiers vides (hors .git*, tor_data)
This commit is contained in:
parent
c7f9748718
commit
3ad6b25fc4
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal 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
|
||||
|
@ -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.
|
||||
|
@ -43,4 +43,5 @@
|
||||
|
||||
- WSL2 (Docker dans WSL): accéder via le navigateur Windows à `http://localhost/`. Si non accessible, utiliser l’IP WSL (`wsl hostname -I` côté PowerShell) et ouvrir `http://<IP_WSL>/`.
|
||||
- VM Linux (Hyper‑V/VirtualBox/VMware): utiliser l’IP 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)
|
0
modules/bitcoin/data/.gitkeep
Normal file
0
modules/bitcoin/data/.gitkeep
Normal file
0
modules/bitcoin/logs/.gitkeep
Normal file
0
modules/bitcoin/logs/.gitkeep
Normal file
0
modules/blindbit/data/.gitkeep
Normal file
0
modules/blindbit/data/.gitkeep
Normal file
0
modules/blindbit/logs/.gitkeep
Normal file
0
modules/blindbit/logs/.gitkeep
Normal file
0
modules/ihm_client/data/.gitkeep
Normal file
0
modules/ihm_client/data/.gitkeep
Normal file
0
modules/ihm_client/logs/.gitkeep
Normal file
0
modules/ihm_client/logs/.gitkeep
Normal file
0
modules/local_IA/.gitkeep
Normal file
0
modules/local_IA/.gitkeep
Normal file
0
modules/local_IA/conf/.gitkeep
Normal file
0
modules/local_IA/conf/.gitkeep
Normal file
0
modules/local_IA/data/.gitkeep
Normal file
0
modules/local_IA/data/.gitkeep
Normal file
0
modules/local_IA/logs/.gitkeep
Normal file
0
modules/local_IA/logs/.gitkeep
Normal file
0
modules/local_IA/scripts/.gitkeep
Normal file
0
modules/local_IA/scripts/.gitkeep
Normal file
0
modules/sdk_relay1/data/.gitkeep
Normal file
0
modules/sdk_relay1/data/.gitkeep
Normal file
0
modules/sdk_relay1/logs/.gitkeep
Normal file
0
modules/sdk_relay1/logs/.gitkeep
Normal file
0
modules/sdk_relay2/data/.gitkeep
Normal file
0
modules/sdk_relay2/data/.gitkeep
Normal file
0
modules/sdk_relay2/logs/.gitkeep
Normal file
0
modules/sdk_relay2/logs/.gitkeep
Normal file
0
modules/sdk_relay3/data/.gitkeep
Normal file
0
modules/sdk_relay3/data/.gitkeep
Normal file
0
modules/sdk_relay3/logs/.gitkeep
Normal file
0
modules/sdk_relay3/logs/.gitkeep
Normal file
0
modules/sdk_signer/data/.gitkeep
Normal file
0
modules/sdk_signer/data/.gitkeep
Normal file
0
modules/sdk_signer/log/.gitkeep
Normal file
0
modules/sdk_signer/log/.gitkeep
Normal file
0
modules/sdk_storage/data/.gitkeep
Normal file
0
modules/sdk_storage/data/.gitkeep
Normal file
0
modules/sdk_storage/log/.gitkeep
Normal file
0
modules/sdk_storage/log/.gitkeep
Normal file
0
modules/tor/data/.gitkeep
Normal file
0
modules/tor/data/.gitkeep
Normal file
0
modules/tor/log/.gitkeep
Normal file
0
modules/tor/log/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-back-mini/data/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-back-mini/data/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-back-mini/logs/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-back-mini/logs/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-front/data/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-front/data/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-front/logs/.gitkeep
Normal file
0
projects/lecoffre/lecoffre-front/logs/.gitkeep
Normal file
Loading…
x
Reference in New Issue
Block a user