Quickstart Guide
Get started with camelAI in minutes using Docker Compose.
Prerequisites
Before you begin, make sure you have the following installed:
Installation Steps
1. Clone the Repository
2. AWS ECR Authentication
Since the camelAI image is stored in Amazon ECR, you’ll need to authenticate Docker to access it:
-
Install the AWS CLI if you haven’t already
-
Configure your AWS credentials:
Enter your:
- AWS Access Key ID
- AWS Secret Access Key
- Default region (us-west-2)
- Default output format (json)
-
Authenticate Docker with ECR:
-
Verify you have the necessary IAM permissions:
- The
AmazonEC2ContainerRegistryReadOnly
policy is required - Or a custom policy with
ecr:GetAuthorizationToken
andecr:BatchCheckLayerAvailability
permissions
- The
3. Configure 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 Application
Run the following command to start camelAI in production mode:
This will start the following services:
camel
– The main applicationnginx
– Reverse proxypgvector
– PostgreSQL with vector extensionmemcached
– Caching layer
5. Create a Superuser
Once the services are running, create your initial superuser account:
Follow the prompts to set up your superuser credentials.
6. Access the Web Interface
Visit the following URL in your browser:
Log in using the superuser credentials you just created.
Troubleshooting
If you encounter any issues during installation:
- Check that Docker and Docker Compose are running
- Verify your environment variables are correctly set
- Ensure you’re authenticated with AWS ECR
- Check the logs using:
For more detailed troubleshooting, visit our Troubleshooting Guide.