Docker Installation

Docker Installation

Containerized Deployment

Docker Containers

Aider is available as two Docker images:

Core Image (smaller, faster):

docker pull paulgauthier/aider
docker run -it --user $(id -u):$(id -g) --volume $(pwd):/app paulgauthier/aider --openai-api-key $OPENAI_API_KEY

Full Image (with all optional features):

docker pull paulgauthier/aider-full
docker run -it --user $(id -u):$(id -g) --volume $(pwd):/app paulgauthier/aider-full --openai-api-key $OPENAI_API_KEY

Note: Run these commands from the root of your git repo, as the volume mapping ensures Aider can access your code files.

6 | 7