1st project organization

This commit is contained in:
gprunet
2026-01-06 23:38:03 +01:00
parent 002824ee8f
commit c75970c703
5 changed files with 78 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
all : up
up :
@docker compose -f ./docker-compose.yml up -d
clean :
@docker compose -f ./docker-compose.yml down -t 1
fclean :
@docker compose -f ./docker-compose.yml down -v -t 1
@docker system prune -af --volumes
re : fclean up