Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ---- Base Node ----
# Use a specific Node.js version known to work, Alpine for smaller size
FROM node:23-alpine AS base
FROM node:21-alpine AS base
WORKDIR /usr/src/app
# NODE_ENV will be set by docker-compose from .env file

Expand Down
4 changes: 2 additions & 2 deletions apps/mcpgateway/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ services:
- YAML_AUTO_RELOAD=true
- TOOLS_YAML_PATH=/usr/src/app/tools
volumes:
- ../../tools:/usr/src/app/tools:rw # Mount tools configurations with read-write for auto-reload
- ../../secrets:/usr/src/app/secrets:ro # Mount secrets directory as read-only
- ../../tools:/usr/src/app/tools:rw,Z # Mount tools configurations with read-write for auto-reload
- ../../secrets:/usr/src/app/secrets:ro,Z # Mount secrets directory as read-only
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3010/health"]
interval: 30s
Expand Down