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
![Mariadb](./img/logo-Mariadb.png)
# Mariadb
# Installation
Pour utiliser AAAAA tout seul
Pour utiliser Mariadb tout seul
```bash
docker compose up -d
```
Pour utiliser AAAAA avec Traefik
Pour utiliser Mariadb avec Traefik
```bash
docker compose -f docker-compose-traefik.yml up -d
```
Pour utiliser AAAAA avec Nginx
Pour utiliser Mariadb avec Nginx
```bash
docker compose -f docker-compose-nginx.yml up -d
```

View File

@ -0,0 +1,20 @@
---
networks:
frontend:
external: true
backend:
external: true
volumes:
mariadb-data:
services:
mariadb:
container_name: db-prod-1
image: mariadb:11.0.3
ports:
- 3306:3306
volumes:
- mariadb-data:/var/lib/mysql
networks:
- frontend
- backend
restart: unless-stopped