Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 941 Bytes

File metadata and controls

48 lines (40 loc) · 941 Bytes

Publishing to Docker Hub

Docker Publishing Steps:

  1. Build the image:
docker build -f Dockerfile.mcp -t your-username/simple-checklist-mcp:latest .
  1. Test locally:
docker run -p 8355:8355 -p 3001:3001 your-username/simple-checklist-mcp:latest
  1. Login to Docker Hub:
docker login
  1. Push to Docker Hub:
docker push your-username/simple-checklist-mcp:latest
docker push your-username/simple-checklist-mcp:v1.0.0
  1. Users can run with:
docker run -d -p 8355:8355 -p 3001:3001 \
  --name simple-checklist-mcp \
  your-username/simple-checklist-mcp:latest

Docker Compose for users:

version: '3.8'
services:
  simple-checklist-mcp:
    image: your-username/simple-checklist-mcp:latest
    ports:
      - "8355:8355"
      - "3001:3001"
    volumes:
      - checklist_data:/app/data
    restart: unless-stopped

volumes:
  checklist_data: