Created
May 14, 2025 15:05
-
-
Save ji-podhead/5d46010f77e0779c2747cea16ed64fa8 to your computer and use it in GitHub Desktop.
an example compose file for creating the requirements for using mcp servers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.9" | |
| services: | |
| gmail: | |
| image: python:3.11 | |
| ports: | |
| - "8000:3000" | |
| command: bash -c "apt-get update && apt install --assume-yes npm && npm i -g npx && curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash && \. $HOME/.nvm/nvm.sh && nvm install 24" | |
| privileged: true | |
| # restart: always | |
| tty: true | |
| network_mode: host |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment