-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (37 loc) · 790 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
38 lines (37 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '3.8'
services:
gateway:
build: ./apps/gateway
ports: ['3000:3000']
env_file: .env
depends_on: [auth, engine]
auth:
build: ./apps/auth
env_file: .env
depends_on: [postgres]
engine:
build: ./apps/engine
env_file: .env
depends_on: [redis, postgres]
connectors:
build: ./apps/connectors
env_file: .env
ai-orchestrator:
build: ./apps/ai-orchestrator
env_file: .env
ui:
build: ./apps/ui
ports: ['3001:3000']
env_file: .env
postgres:
image: postgres:15
restart: always
environment:
POSTGRES_DB: hypeai
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- ./docker/db-init:/docker-entrypoint-initdb.d
redis:
image: redis:7
restart: always