Skip to content

Instantly share code, notes, and snippets.

View MParvin's full-sized avatar

Mohammad Parvin MParvin

View GitHub Profile
@MParvin
MParvin / docker-compose.yml
Created February 12, 2026 13:52
AI-Stack
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
restart: unless-stopped
ports:
- "11434:11434"
deploy:
resources:
reservations:
@MParvin
MParvin / privoxy-docker-compose.yml
Created February 14, 2026 08:50
Privoxy in docker
services:
privoxy:
image: vimagick/privoxy
restart: always
volumes: ["./privoxy:/etc/privoxy"]
ports: ["8118:8118"]