docker_compose_webtool.yaml
· 1.8 KiB · YAML
Raw
# Stack of 3 tools for webmaster.
services:
###########################################################################
# IT-TOOLS
# Outils DevOps / SysAdmin – accessible via Nginx Proxy Manager
###########################################################################
it-tools:
image: corentinth/it-tools:latest
container_name: it-tools
restart: unless-stopped
networks:
private_apps:
ipv4_address: 10.10.0.60 # IP libre → adapter si besoin
volumes:
- ./data/it-tools:/data # répertoire dédié
###########################################################################
# NETWORKING TOOLBOX
# Suite d’outils réseaux – servie en interne, accessible via NPM
###########################################################################
networking-toolbox:
image: lissy93/networking-toolbox:latest
container_name: networking-toolbox
restart: unless-stopped
networks:
private_apps:
ipv4_address: 10.10.0.61
environment:
- NODE_ENV=production
volumes:
- ./data/networking-toolbox:/app/data
###########################################################################
# VERT – convertisseur
###########################################################################
vert:
image: ghcr.io/vert-sh/vert:latest
container_name: vert
restart: unless-stopped
networks:
private_apps:
ipv4_address: 10.10.0.62
volumes:
- ./data/vert:/var/www/data
###########################################################################
# RÉSEAUX DOCKER
# Le réseau private_apps est déjà existant, utilisé par tes apps internes.
###########################################################################
networks:
private_apps:
external: true
name: private_apps
| 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 |
| 11 | restart: unless-stopped |
| 12 | |
| 13 | networks: |
| 14 | private_apps: |
| 15 | ipv4_address: 10.10.0.60 # IP libre → adapter si besoin |
| 16 | |
| 17 | volumes: |
| 18 | - ./data/it-tools:/data # répertoire dédié |
| 19 | |
| 20 | ########################################################################### |
| 21 | # NETWORKING TOOLBOX |
| 22 | # Suite d’outils réseaux – servie en interne, accessible via NPM |
| 23 | ########################################################################### |
| 24 | networking-toolbox: |
| 25 | image: lissy93/networking-toolbox:latest |
| 26 | container_name: networking-toolbox |
| 27 | restart: unless-stopped |
| 28 | |
| 29 | networks: |
| 30 | private_apps: |
| 31 | ipv4_address: 10.10.0.61 |
| 32 | |
| 33 | environment: |
| 34 | - NODE_ENV=production |
| 35 | |
| 36 | volumes: |
| 37 | - ./data/networking-toolbox:/app/data |
| 38 | |
| 39 | ########################################################################### |
| 40 | # VERT – convertisseur |
| 41 | ########################################################################### |
| 42 | vert: |
| 43 | image: ghcr.io/vert-sh/vert:latest |
| 44 | container_name: vert |
| 45 | restart: unless-stopped |
| 46 | |
| 47 | networks: |
| 48 | private_apps: |
| 49 | ipv4_address: 10.10.0.62 |
| 50 | |
| 51 | volumes: |
| 52 | - ./data/vert:/var/www/data |
| 53 | |
| 54 | |
| 55 | ########################################################################### |
| 56 | # RÉSEAUX DOCKER |
| 57 | # Le réseau private_apps est déjà existant, utilisé par tes apps internes. |
| 58 | ########################################################################### |
| 59 | networks: |
| 60 | private_apps: |
| 61 | external: true |
| 62 | name: private_apps |
| 63 |