Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
AI Tutor
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Salma Mohammed Hamed
AI Tutor
Commits
a339a02d
Commit
a339a02d
authored
Sep 16, 2025
by
Salma Mohammed Hamed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docker-compose.yml
parent
9adcfccb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
docker-compose.yml
self_hosted_env/docker-compose.yml
+23
-4
No files found.
self_hosted_env/docker-compose.yml
View file @
a339a02d
version
:
"
3.8"
services
:
postgres
:
image
:
pgvector/pgvector:pg16
environment
:
...
...
@@ -12,6 +10,11 @@ services:
-
pgdata:/var/lib/postgresql/data
ports
:
-
"
5432:5432"
healthcheck
:
test
:
[
"
CMD-SHELL"
,
"
pg_isready
-U
${POSTGRES_USER}
-d
${POSTGRES_DB}"
]
interval
:
10s
timeout
:
5s
retries
:
5
minio
:
...
...
@@ -25,6 +28,11 @@ services:
ports
:
-
"
9000:9000"
-
"
9001:9001"
healthcheck
:
test
:
[
"
CMD"
,
"
curl"
,
"
-f"
,
"
http://localhost:9000/minio/health/live"
]
interval
:
30s
timeout
:
20s
retries
:
3
data-handler
:
...
...
@@ -42,12 +50,17 @@ services:
depends_on
:
-
minio
-
postgres
healthcheck
:
test
:
[
"
CMD"
,
"
curl"
,
"
-f"
,
"
http://localhost:8000/health"
]
interval
:
10s
retries
:
3
timeout
:
5s
voice-agent
:
image
:
salmamohammedhamedmustafa/voice-agent:latest
ports
:
-
"
80
1
0:8000"
-
"
80
0
0:8000"
environment
:
MINIO_ENDPOINT
:
"
http://minio:9000"
MINIO_ACCESS_KEY
:
"
${MINIO_ROOT_USER}"
...
...
@@ -58,7 +71,13 @@ services:
POSTGRES_USER
:
"
${POSTGRES_USER}"
POSTGRES_PASSWORD
:
"
${POSTGRES_PASSWORD}"
POSTGRES_DB
:
"
${POSTGRES_DB}"
volumes
:
-
./uploads:/app/uploads
depends_on
:
-
minio
-
data-handler
volumes
:
pgdata
:
miniodata
:
miniodata
:
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment