This commit is contained in:
2024-04-19 13:37:37 +02:00
parent 92412f0e3f
commit 66ed9c24ab
583 changed files with 3821 additions and 3978 deletions

View File

@ -1,21 +1,20 @@
![AAAAA](./img/logo-AAAAA.png)
# AAAAA
![RabbitMQ](./img/logo-RabbitMQ.png)
# RabbitMQ
# Installation
Pour utiliser AAAAA tout seul
Pour utiliser RabbitMQ tout seul
```bash
docker compose up -d
```
Pour utiliser AAAAA avec Traefik
Pour utiliser RabbitMQ avec Traefik
```bash
docker compose -f docker-compose-traefik.yml up -d
```
Pour utiliser AAAAA avec Nginx
Pour utiliser RabbitMQ avec Nginx
```bash
docker compose -f docker-compose-nginx.yml up -d
```

View File

@ -0,0 +1,16 @@
version: '3.9'
services:
rabbitmq:
image: rabbitmq:3.7-management
healthcheck:
test: [ "CMD-SHELL", "rabbitmqctl status" ]
interval: 10s
timeout: 10s
retries: 3
ports:
- "15672:15672"
- "5672:5672"
environment:
RABBITMQ_DEFAULT_USER: "guest"
RABBITMQ_DEFAULT_PASS: "guest"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB