-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
161 lines (151 loc) · 3.76 KB
/
docker-compose.yml
File metadata and controls
161 lines (151 loc) · 3.76 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
version: "3.9"
services:
agents-service:
build:
context: ./agent-service
dockerfile: Dockerfile
container_name: agents-service-app
# ports:
# - "5000:5000"
environment:
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
networks:
- app-network
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- API_KEY=${API_KEY}
- GITHUB_CLIENT_ID=${GITHUB_CLIENT_ID}
- GITHUB_CLIENT_SECRET=${GITHUB_CLIENT_SECRET}
- GOOGLE_CLIENT_ID=${GOOGLE_CLIENT_ID}
- GOOGLE_CLIENT_SECRET=${GOOGLE_CLIENT_SECRET}
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
networks:
- app-network
nexus:
build:
context: ./nexus
dockerfile: Dockerfile
ports:
- "3001:3000"
networks:
- app-network
task-pilot-db:
image: postgres:15-alpine
container_name: task-pilot-db
environment:
POSTGRES_DB: task_pilot_db
POSTGRES_USER: task_pilot_db_user
POSTGRES_PASSWORD: task_pilot_db_password
volumes:
- task-pilot-db-data:/var/lib/postgresql/data
networks:
- app-network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U task_pilot_db_user -d task-pilot-db"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
backend:
build:
context: ./backend
dockerfile: Dockerfile
# ports:
# - "8000:8000"
environment:
- PORT=8000
- DATABASE_URL=postgresql://task_pilot_db_user:task_pilot_db_password@task-pilot-db:5432/task_pilot_db
- API_KEY=${API_KEY}
- JWT_SECRET=${JWT_SECRET}
- SEARCH_API_BASE=${SEARCH_API_BASE}
- SEARXNG_API_BASE=${SEARXNG_API_BASE}
- JWT_REFRESH_SECRET=${JWT_REFRESH_SECRET}
- SEARXNG_API_BASE=${SEARXNG_API_BASE}
- GEMINI_API_KEY=${GEMINI_API_KEY}
- SEARCH_API_BASE=${SEARCH_API_BASE}
- RAZORPAY_KEY_SECRET=${RAZORPAY_KEY_SECRET}
- RAZORPAY_KEY_ID=${RAZORPAY_KEY_ID}
entrypoint: ["sh", "-c", "bun run dev"]
networks:
- app-network
caddy:
container_name: caddy
image: docker.io/library/caddy:2-alpine
network_mode: host
restart: unless-stopped
volumes:
- ./searxng-docker/Caddyfile:/etc/caddy/Caddyfile:ro
- caddy-data:/data:rw
- caddy-config:/config:rw
environment:
- SEARXNG_HOSTNAME=${SEARXNG_HOSTNAME:-http://localhost}
- SEARXNG_TLS=${LETSENCRYPT_EMAIL:-internal}
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
redis:
container_name: redis
image: docker.io/valkey/valkey:8-alpine
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
networks:
- searxng
volumes:
- valkey-data2:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
networks:
- searxng
# ports:
# - "8080:8080"
volumes:
- ./searxng-docker/searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
- UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
- UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
networks:
searxng:
driver: bridge
app-network:
driver: bridge
volumes:
caddy-data:
caddy-config:
valkey-data2:
task-pilot-db-data: