forked from InsForge/InsForge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
249 lines (242 loc) · 8.6 KB
/
docker-compose.yml
File metadata and controls
249 lines (242 loc) · 8.6 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
version: '3.8'
services:
postgres:
image: ghcr.io/insforge/postgres:v15.13.2
container_name: insforge-postgres
command: postgres -c config_file=/etc/postgresql/postgresql.conf -c app.encryption_key='${ENCRYPTION_KEY:-${JWT_SECRET:-dev-secret-please-change-in-production}}'
environment:
- POSTGRES_USER=${POSTGRES_USER:-postgres}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-postgres}
- POSTGRES_DB=${POSTGRES_DB:-insforge}
volumes:
- postgres-data:/var/lib/postgresql/data
- ./deploy/docker-init/db/db-init.sql:/docker-entrypoint-initdb.d/01-init.sql
- ./deploy/docker-init/db/jwt.sql:/docker-entrypoint-initdb.d/02-jwt.sql
- ./deploy/docker-init/db/postgresql.conf:/etc/postgresql/postgresql.conf
ports:
- "5432:5432"
networks:
- insforge-network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
postgrest:
image: postgrest/postgrest:v12.2.12
container_name: insforge-postgrest
restart: unless-stopped
environment:
# POSTGRES_USER: ${POSTGRES_USER:-postgres}
# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
# POSTGRES_DB: ${POSTGRES_DB:-insforge}
PGRST_DB_URI: postgres://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-insforge}
PGRST_OPENAPI_SERVER_PROXY_URI: http://localhost:3000
PGRST_DB_SCHEMA: public
PGRST_DB_ANON_ROLE: anon
PGRST_JWT_SECRET: ${JWT_SECRET:-dev-secret-please-change-in-production}
# Enable schema reloading via NOTIFY
PGRST_DB_CHANNEL_ENABLED: true
PGRST_DB_CHANNEL: pgrst
ports:
- "5430:3000"
depends_on:
postgres:
condition: service_healthy
networks:
- insforge-network
insforge:
build:
context: .
dockerfile: Dockerfile
target: dev
image: insforge-dev
container_name: insforge
working_dir: /app
depends_on:
postgres:
condition: service_healthy
ports:
- "7130:7130"
- "7131:7131"
- "7132:7132"
environment:
- PORT=7130
- PROJECT_ROOT=/app
- API_BASE_URL=${API_BASE_URL:-}
- VITE_API_BASE_URL=${VITE_API_BASE_URL:-}
- JWT_SECRET=${JWT_SECRET:-dev-secret-please-change-in-production}
- ENCRYPTION_KEY=${ENCRYPTION_KEY:-}
- ADMIN_EMAIL=${ADMIN_EMAIL:-admin@example.com}
- ADMIN_PASSWORD=${ADMIN_PASSWORD:-change-this-password}
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID:-}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY:-}
# S3-specific credentials (for Wasabi, MinIO, etc. — falls back to AWS_* if not set)
- S3_ACCESS_KEY_ID=${S3_ACCESS_KEY_ID:-}
- S3_SECRET_ACCESS_KEY=${S3_SECRET_ACCESS_KEY:-}
# Storage limits
- MAX_FILE_SIZE=${MAX_FILE_SIZE:-}
# PostgreSQL connection
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=${POSTGRES_DB:-insforge}
- POSTGRES_USER=${POSTGRES_USER:-postgres}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-postgres}
- DATABASE_URL=postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-insforge}
- POSTGREST_BASE_URL=http://postgrest:3000
# Deno Runtime URL for serverless functions
- DENO_RUNTIME_URL=http://deno:7133
# Deno Subhosting Configuration
- DENO_SUBHOSTING_TOKEN=${DENO_SUBHOSTING_TOKEN:-}
- DENO_SUBHOSTING_ORG_ID=${DENO_SUBHOSTING_ORG_ID:-}
# Storage Configuration
- AWS_S3_BUCKET=${AWS_S3_BUCKET:-}
- AWS_REGION=${AWS_REGION:-}
- S3_ENDPOINT_URL=${S3_ENDPOINT_URL:-}
- AWS_CLOUDFRONT_URL=${AWS_CLOUDFRONT_URL:-}
- AWS_CLOUDFRONT_KEY_PAIR_ID=${AWS_CLOUDFRONT_KEY_PAIR_ID:-}
- AWS_CLOUDFRONT_PRIVATE_KEY=${AWS_CLOUDFRONT_PRIVATE_KEY:-}
# Multi-tenant Cloud Configuration
- DEPLOYMENT_ID=${DEPLOYMENT_ID:-}
- PROJECT_ID=${PROJECT_ID:-}
- APP_KEY=${APP_KEY:-}
- ACCESS_API_KEY=${ACCESS_API_KEY:-}
- CLOUD_API_HOST=${CLOUD_API_HOST:-}
# LLM Model API keys
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY:-}
# OAuth Configuration
- GOOGLE_CLIENT_ID=${GOOGLE_CLIENT_ID:-}
- GOOGLE_CLIENT_SECRET=${GOOGLE_CLIENT_SECRET:-}
- GITHUB_CLIENT_ID=${GITHUB_CLIENT_ID:-}
- GITHUB_CLIENT_SECRET=${GITHUB_CLIENT_SECRET:-}
- DISCORD_CLIENT_ID=${DISCORD_CLIENT_ID:-}
- DISCORD_CLIENT_SECRET=${DISCORD_CLIENT_SECRET:-}
- MICROSOFT_CLIENT_ID=${MICROSOFT_CLIENT_ID:-}
- MICROSOFT_CLIENT_SECRET=${MICROSOFT_CLIENT_SECRET:-}
- LINKEDIN_CLIENT_ID=${LINKEDIN_CLIENT_ID:-}
- LINKEDIN_CLIENT_SECRET=${LINKEDIN_CLIENT_SECRET:-}
- X_CLIENT_ID=${X_CLIENT_ID:-}
- X_CLIENT_SECRET=${X_CLIENT_SECRET:-}
- APPLE_CLIENT_ID=${APPLE_CLIENT_ID:-}
- APPLE_CLIENT_SECRET=${APPLE_CLIENT_SECRET:-}
# Logs directory
- LOGS_DIR=/insforge-logs
# Storage directory (for local file storage when S3 is not configured)
- STORAGE_DIR=/insforge-storage
# Auth app URL for development proxy
- AUTH_APP_URL=${AUTH_APP_URL:-http://localhost:7132}
volumes:
- ./package.json:/app/package.json
- ./backend:/app/backend
- ./frontend:/app/frontend
- ./auth:/app/auth
- ./shared-schemas:/app/shared-schemas
- ./ui:/app/ui
- ./docs:/app/docs
- node_modules:/app/node_modules
- backend_node_modules:/app/backend/node_modules
- frontend_node_modules:/app/frontend/node_modules
- auth_node_modules:/app/auth/node_modules
- shared_schemas_node_modules:/app/shared-schemas/node_modules
- ui_node_modules:/app/ui/node_modules
- shared-logs:/insforge-logs
- storage-data:/insforge-storage
command: sh -c "npm install && cd backend && npm run migrate:up && cd .. && npm run dev"
restart: unless-stopped
networks:
- insforge-network
# Deno serverless runtime for edge functions
deno:
image: denoland/deno:alpine-2.0.6
container_name: insforge-deno
working_dir: /app
depends_on:
- postgres
- postgrest
ports:
- "7133:7133"
environment:
- PORT=7133
- DENO_ENV=${DENO_ENV:-development}
- DENO_DIR=/deno-dir
# PostgreSQL connection
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=${POSTGRES_DB:-insforge}
- POSTGRES_USER=${POSTGRES_USER:-postgres}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-postgres}
- POSTGREST_BASE_URL=http://postgrest:3000
# Worker timeout (60 seconds default)
- WORKER_TIMEOUT_MS=${WORKER_TIMEOUT_MS:-60000}
# Encryption keys for decrypting function secrets
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
- JWT_SECRET=${JWT_SECRET:-dev-secret-please-change-in-production}
volumes:
- ./functions:/app/functions
- deno_cache:/deno-dir
command: >
sh -c "
echo 'Downloading Deno dependencies...' &&
deno cache functions/server.ts &&
echo 'Starting Deno server on port 7133...' &&
deno run --allow-net --allow-env --allow-read=./functions/worker-template.js --watch functions/server.ts
"
restart: unless-stopped
networks:
- insforge-network
# Vector.dev for log collection and shipping
vector:
container_name: insforge-vector
image: timberio/vector:0.28.1-alpine
restart: unless-stopped
depends_on:
postgres:
condition: service_healthy
postgrest:
condition: service_started
insforge:
condition: service_started
deno:
condition: service_started
volumes:
- ./deploy/docker-init/logs/vector.yml:/etc/vector/vector.yml:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- shared-logs:/insforge-logs
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7135/health"]
timeout: 5s
interval: 5s
retries: 3
environment:
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID:-}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY:-}
- AWS_REGION=${AWS_REGION:-skip}
- PROJECT_ID=${PROJECT_ID:-}
- HOSTNAME_OVERRIDE=${HOSTNAME_OVERRIDE:-}
command: ["--config", "/etc/vector/vector.yml"]
networks:
- insforge-network
volumes:
postgres-data:
driver: local
node_modules:
driver: local
backend_node_modules:
driver: local
frontend_node_modules:
driver: local
auth_node_modules:
driver: local
shared_schemas_node_modules:
driver: local
ui_node_modules:
driver: local
deno_cache:
driver: local
shared-logs:
driver: local
storage-data:
driver: local
networks:
insforge-network:
driver: bridge