Skip to main content

Docker Deployment

Quick Start​

ash docker pull proai/platform:latest docker-compose up -d

docker-compose.yml​

version: "3.8"
services:
proai-api:
image: proai/platform:latest
ports:
- "8080:8080"
environment:
DATABASE_URL: postgres://proai:secret@db:5432/proai
REDIS_URL: redis://redis:6379

proai-worker:
image: proai/platform:latest
command: worker
environment:
DATABASE_URL: postgres://proai:secret@db:5432/proai

db:
image: postgres:16
volumes:
- pgdata:/var/lib/postgresql/data

redis:
image: redis:7-alpine

volumes:
pgdata:
`

## See Also

- [Kubernetes](/docs/deployment/kubernetes) — K8s deployment
- [Docker Compose](/docs/deployment/helm-charts) — Helm charts