We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 840e554 commit 17524e5Copy full SHA for 17524e5
docker-compose.yml
@@ -2,12 +2,15 @@ version: "3.8"
2
3
services:
4
api:
5
- image: evoapicloud/evo-ai:latest
+ # image: evoapicloud/evo-ai:latest Use this image to pull from the repo
6
+ image: evoai-api:latest # Use this image for local builds
7
depends_on:
8
- postgres
9
- redis
10
ports:
11
- "8000:8000"
12
+ env_file:
13
+ - .env
14
environment:
15
POSTGRES_CONNECTION_STRING: postgresql://postgres:${POSTGRES_PASSWORD:-postgres}@postgres:5432/evo_ai
16
REDIS_HOST: redis
0 commit comments