Last active 1 month ago

Erreur32's Avatar Erreur32 revised this gist 6 months ago. Go to revision

No changes

Erreur32's Avatar Erreur32 revised this gist 6 months ago. Go to revision

1 file changed, 70 insertions

docker_compose_tool.yaml(file created)

@@ -0,0 +1,70 @@
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
Newer Older