Skip to content

Instantly share code, notes, and snippets.

@ji-podhead
Created May 14, 2025 15:05
Show Gist options
  • Select an option

  • Save ji-podhead/5d46010f77e0779c2747cea16ed64fa8 to your computer and use it in GitHub Desktop.

Select an option

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
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