Docker mcp gateway (#603)
* Log a message with implicit URI changes Small update for #542 * Update docker container to default to stdio Replaces #541main
parent
810d756be9
commit
1ad4f09d11
|
|
@ -28,4 +28,9 @@ EXPOSE 8080
|
|||
|
||||
ENV PYTHONPATH=/app/Server/src
|
||||
|
||||
CMD ["uv", "run", "python", "src/main.py", "--transport", "http", "--http-host", "0.0.0.0", "--http-port", "8080"]
|
||||
# ENTRYPOINT allows override via docker run arguments
|
||||
# Default: stdio transport (Docker MCP Gateway compatible)
|
||||
# For HTTP: docker run -p 8080:8080 <image> --transport http --http-host 0.0.0.0 --http-port 8080
|
||||
# If hosting remotely, you should add the --project-scoped-tools flag
|
||||
ENTRYPOINT ["uv", "run", "mcp-for-unity"]
|
||||
CMD []
|
||||
|
|
|
|||
Loading…
Reference in New Issue