Erreur32 / docker_compose_webtool.yaml
0 Lajky
0 Forky
1 Soubory
Naposledy aktivní 1 month ago
| 1 | # Stack of 3 tools for webmaster. |
| 2 | |
| 3 | services: |
| 4 | ########################################################################### |
| 5 | # IT-TOOLS |
| 6 | # Outils DevOps / SysAdmin – accessible via Nginx Proxy Manager |
| 7 | ########################################################################### |
| 8 | it-tools: |
| 9 | image: corentinth/it-tools:latest |
| 10 | container_name: it-tools |
Erreur32 / docker_compose_netalertx.yaml
0 Lajky
0 Forky
1 Soubory
Naposledy aktivní 1 month ago
docker compose for Netalertx
| 1 | services: |
| 2 | netalertx: |
| 3 | container_name: netalertx |
| 4 | |
| 5 | image: "ghcr.io/jokob-sk/netalertx" # ✔️ NOUVEAU |
| 6 | #image: ghcr.io/jokob-sk/netalertx:v25.5.24 |
| 7 | |
| 8 | network_mode: "host" |
| 9 | |
| 10 | restart: unless-stopped |
Erreur32 / script_stat_machine_docker.sh
1 Lajky
0 Forky
1 Soubory
Naposledy aktivní 1 month ago
| 1 | #!/bin/bash |
| 2 | |
| 3 | echo -e "\n Stats Machine proc/load" |
| 4 | |
| 5 | # Commande pour afficher les 3 premières lignes des processus triés par utilisation CPU |
| 6 | output=$(ps aux --sort=-%cpu | head -n 3) |
| 7 | |
| 8 | # Traitement et coloration des colonnes |
| 9 | echo "$output" | awk ' |
| 10 | BEGIN { |
Novější
Starší