This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[i] No changes detected | |
node:internal/fs/utils:356 | |
throw err; | |
^ | |
Error: EISDIR: illegal operation on a directory, read | |
at Object.readSync (node:fs:744:3) | |
at tryReadSync (node:fs:444:20) | |
at Object.readFileSync (node:fs:490:19) | |
at loadConfig (/home/perplexica/dist/config.js:11:60) | |
at getPort (/home/perplexica/dist/config.js:12:23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
volumes: | |
n8n_storage: | |
postgres_storage: | |
ollama_storage: | |
qdrant_storage: | |
open-webui: | |
networks: | |
net_ai: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Obtenir la version de Windows | |
$windowsVersion = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId | |
$windowsBuild = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").CurrentBuild | |
# Afficher la version et le build | |
Write-Host "Version de Windows : $windowsVersion" | |
Write-Host "Build de Windows : $windowsBuild" | |
# Vérifier si la fonctionnalité "Recall" est activée | |
$RecallEnabled = Dism /online /Get-FeatureInfo /FeatureName:Recall | findstr /B /C:"State" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Informations sur le CPU | |
$cpuInfo = Get-WmiObject -Class Win32_Processor | Select-Object Name | |
# Informations sur le GPU | |
$gpuInfo = Get-WmiObject -Class Win32_VideoController | Select-Object Name | |
# Informations sur la RAM et sa vitesse | |
$ramInfo = Get-WmiObject -Class Win32_PhysicalMemory | Measure-Object -Property Capacity -Sum | Select-Object @{Name="Total RAM (Go)";Expression={$_.Sum / 1GB}},@{Name="Vitesse RAM (MHz)";Expression={(Get-WmiObject -Class Win32_PhysicalMemory | Select-Object -First 1).Speed}} | |
# Informations sur la carte mère et le BIOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Version 2024/10/09 | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name searx.*; | |
include /config/nginx/ssl.conf; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
swag: | |
image: searxng/searxng | |
container_name: searx-ng | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- BASE_URL=https://searx.domaine.fr | |
- INSTANCE_NAME=DomaineSearch | |
- TZ=Europe/Paris |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
ollama: | |
image: ollama/ollama:latest | |
container_name: ollama | |
volumes: | |
- /volume1/docker/ollama-web/ollama:/root/.ollama | |
#pull_policy: always | |
#tty: true | |
#ports: | |
# -11434:11434 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name linkwarden.domaine.fr | |
include /config/nginx/ssl.conf; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
db: | |
image: postgres:16 | |
container_name: Linkwarden-DB | |
hostname: linkwarden-db | |
mem_limit: 1g | |
cpu_shares: 768 | |
security_opt: | |
- no-new-privileges:true | |
healthcheck: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
ollama: | |
image: ollama/ollama:latest | |
container_name: ollama | |
volumes: | |
- ollama:/root/.ollama | |
#pull_policy: always | |
#tty: true | |
#ports: | |
# -11434:11434 |
NewerOlder