brand renaming, scenario reloads flight

This commit is contained in:
2026-04-12 08:39:12 -03:00
parent 9dbf89da02
commit 5c82703ebe
25 changed files with 433 additions and 482 deletions

View File

@@ -16,4 +16,5 @@ RUN pnpm install && pnpm run build
FROM nginx:alpine
COPY --from=build /ui/app/dist /usr/share/nginx/html
COPY docs/ /usr/share/nginx/docs/
COPY ctrl/nginx.conf /etc/nginx/conf.d/default.conf

View File

@@ -6,6 +6,10 @@ server {
try_files $uri $uri/ /index.html;
}
location /docs/ {
alias /usr/share/nginx/docs/;
}
location /agents {
proxy_pass http://api:8000;
}