########################################################################### # DOCKER COMPOSE - TOOLS PACK # # 📦 Outils inclus : # - IT-Tools (DevOps / SysAdmin Toolbox) # Repo : https://github.com/CorentinTh/it-tools # Port interne : 80 → exposé sur 8083 # # - Networking Toolbox (Analyse & outils réseau) # Repo : https://github.com/lissy93/network-tools # Port interne : 3000 → exposé sur 8081 # # - Vert (Dashboard / monitoring simple) # Repo : https://github.com/vert-sh/vert # Port interne : 80 → exposé sur 8082 # # 📂 Répertoires data : # ./data/it-tools/ # ./data/networking-toolbox/ # ./data/vert/ # ########################################################################### services: ########################################################################### # IT-TOOLS ########################################################################### it-tools: image: corentinth/it-tools:latest container_name: it-tools restart: unless-stopped ports: - "8083:80" # accès : http://IP:8083 volumes: - ./data/it-tools:/data ########################################################################### # NETWORKING TOOLBOX ########################################################################### networking-toolbox: image: lissy93/networking-toolbox:latest container_name: networking-toolbox restart: unless-stopped ports: - "8081:3000" # accès : http://IP:8081 environment: - NODE_ENV=production volumes: - ./data/networking-toolbox:/app/data ########################################################################### # VERT DASHBOARD ########################################################################### vert: image: ghcr.io/vert-sh/vert:latest container_name: vert restart: unless-stopped ports: - "8082:80" # accès : http://IP:8082 volumes: - ./data/vert:/var/www/data