Posts

Showing posts with the label Docker

AI Environment

AI Environment   I was asked how to create an environment for AI that would I do for a business firm that is not a software firm. Thought it was a great question faced by many people.  This blog entry is an attempt to answer that question: Option 1 1) Get and Install  Docker    Download Docker.    A different option from a Docker container is an Edera container. ( https://edera.dev/ )  2) Create Docker Container ( Sandbox ) with Config file    The safest and easiest way to isolate your AI is running Ollama in a Docker container .     Why Docker?  Docker creates a strict security sandbox. The AI cannot see or touch the host computer's files unless you explicitly map a specific folder to it.  You can configure the Docker container with a restricted network bridge, preventing the AI from reaching the internet or sensitive company servers.      A suggested Docker config file is below.   ...