chore(cleanup): Fixed Makefile and Fully remove icons service

Changed so that Only non-monitoring services are launched by default
(override by doing `make DOCKER_SERVICE=`)

Fully removed the icons service (not yet in monitoring)
This commit is contained in:
Maieul BOYER 2025-12-12 14:54:45 +01:00
parent 7ebd129faa
commit 762796417a
No known key found for this signature in database
4 changed files with 17 additions and 41 deletions

View file

@ -1,11 +0,0 @@
#forward the post request to the microservice
location /api/icons/set/ {
rewrite ^/api/icons/set/(.*) $1 break;
proxy_pass http://icons/$uri;
}
#handle the get request with nginx, since it does this well
location /api/icons/get/ {
rewrite ^/api/icons/get/(.*) /$1 break;
root /volumes/icons;
}