feat(kubernetes): add kubernetes tool (#1929)

Co-authored-by: oussama Dahmaz <dahmaz@MacBook-Pro-de-odahmaz.local>
This commit is contained in:
oussama Dahmaz
2025-03-09 17:46:15 +01:00
committed by GitHub
parent f6f0d7c72b
commit f19aa29607
67 changed files with 3897 additions and 67 deletions

View File

@@ -11,4 +11,20 @@ services:
container_name: redis
image: redis
ports:
- "6379:6379"
- "6379:6379"
mysql:
container_name: mysql
image: mysql:8.0
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: homarr
MYSQL_DATABASE: homarrdb
MYSQL_USER: homarr
MYSQL_PASSWORD: homarr
volumes:
- mysql_data:/var/lib/mysql
volumes:
mysql_data: