docker_compose_tool.yaml
· 2.0 KiB · YAML
原始檔案
###########################################################################
# 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
| 1 | ########################################################################### |
| 2 | # DOCKER COMPOSE - TOOLS PACK |
| 3 | # |
| 4 | # 📦 Outils inclus : |
| 5 | # - IT-Tools (DevOps / SysAdmin Toolbox) |
| 6 | # Repo : https://github.com/CorentinTh/it-tools |
| 7 | # Port interne : 80 → exposé sur 8083 |
| 8 | # |
| 9 | # - Networking Toolbox (Analyse & outils réseau) |
| 10 | # Repo : https://github.com/lissy93/network-tools |
| 11 | # Port interne : 3000 → exposé sur 8081 |
| 12 | # |
| 13 | # - Vert (Dashboard / monitoring simple) |
| 14 | # Repo : https://github.com/vert-sh/vert |
| 15 | # Port interne : 80 → exposé sur 8082 |
| 16 | # |
| 17 | # 📂 Répertoires data : |
| 18 | # ./data/it-tools/ |
| 19 | # ./data/networking-toolbox/ |
| 20 | # ./data/vert/ |
| 21 | # |
| 22 | ########################################################################### |
| 23 | |
| 24 | services: |
| 25 | ########################################################################### |
| 26 | # IT-TOOLS |
| 27 | ########################################################################### |
| 28 | it-tools: |
| 29 | image: corentinth/it-tools:latest |
| 30 | container_name: it-tools |
| 31 | restart: unless-stopped |
| 32 | |
| 33 | ports: |
| 34 | - "8083:80" # accès : http://IP:8083 |
| 35 | |
| 36 | volumes: |
| 37 | - ./data/it-tools:/data |
| 38 | |
| 39 | |
| 40 | ########################################################################### |
| 41 | # NETWORKING TOOLBOX |
| 42 | ########################################################################### |
| 43 | networking-toolbox: |
| 44 | image: lissy93/networking-toolbox:latest |
| 45 | container_name: networking-toolbox |
| 46 | restart: unless-stopped |
| 47 | |
| 48 | ports: |
| 49 | - "8081:3000" # accès : http://IP:8081 |
| 50 | |
| 51 | environment: |
| 52 | - NODE_ENV=production |
| 53 | |
| 54 | volumes: |
| 55 | - ./data/networking-toolbox:/app/data |
| 56 | |
| 57 | |
| 58 | ########################################################################### |
| 59 | # VERT DASHBOARD |
| 60 | ########################################################################### |
| 61 | vert: |
| 62 | image: ghcr.io/vert-sh/vert:latest |
| 63 | container_name: vert |
| 64 | restart: unless-stopped |
| 65 | |
| 66 | ports: |
| 67 | - "8082:80" # accès : http://IP:8082 |
| 68 | |
| 69 | volumes: |
| 70 | - ./data/vert:/var/www/data |
| 71 |