Docker Compose Setup
Learn how to set up and configure Docker Compose for camelAI.
Overview
camelAI uses Docker Compose to manage multiple services:
camel
: The main application (hosted on Amazon ECR)nginx
: Reverse proxypgvector
: PostgreSQL with pgvector extensionmemcached
: Caching layer
Prerequisites
Before setting up Docker Compose, ensure you have:
- Docker and Docker Compose installed
- AWS CLI installed and configured
- AWS ECR authentication set up:
- Required IAM permissions:
AmazonEC2ContainerRegistryReadOnly
policy- Or custom policy with
ecr:GetAuthorizationToken
andecr:BatchCheckLayerAvailability
permissions
Installation Steps
1. Clone the Repository
2. Review the Docker Compose File
The main Docker Compose configuration is in docker-compose.prod.yml
. Here’s a breakdown of the services:
3. Environment Variables
The repository includes a .env.docker
template file. Copy it and update the values:
Edit .env.docker.local
with your configuration:
- Set a secure
DJANGO_SECRET_KEY
- Update
POSTGRES_PASSWORD
with a secure password - Configure your AWS credentials if using Bedrock
- Set up API keys if using OpenAI or Anthropic
See our Environment Variables guide for details.
4. Start the Services
Run the following command to start all services:
5. Verify Installation
Check that all services are running:
You should see all services with a status of “running”.
Common Issues
ECR Authentication
If you see errors related to ECR authentication:
-
Verify AWS CLI is configured correctly:
-
Check ECR authentication:
-
Verify IAM permissions:
- Check if you have the
AmazonEC2ContainerRegistryReadOnly
policy - Or verify custom policy permissions
- Check if you have the
Port Conflicts
If you see port conflicts, make sure:
- Port 8000 is not in use by another application
Volume Permissions
If you encounter permission issues with volumes:
Service Health Checks
You can check the health of individual services:
Next Steps
After setting up Docker Compose: