Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,10 @@ This project is deployed in accordance to the [DargStack template](https://githu

You cannot access the recommendation service directly.

- ### `reccoom_postgres`

You can access reccoom's database via `adminer`.

- ### `redpanda`

You can access the event streaming platform's ui as described under `redpanda-console`.
Expand Down Expand Up @@ -302,6 +306,10 @@ This project is deployed in accordance to the [DargStack template](https://githu

The metrics monitoring's data.

- ### `reccoom_postgres_data`

The recommendation database's data.

- ### `redpanda_data`

The message queue's data.
Expand Down
18 changes: 18 additions & 0 deletions src/development/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,21 @@ services:
- postgres_user
volumes:
- ../../../reccoom/:/srv/app/
reccoom_postgres:
# You can access reccoom's database via `adminer`.
environment:
POSTGRES_DB_FILE: /run/secrets/postgres_db
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
POSTGRES_USER_FILE: /run/secrets/postgres_user
image: pgvector/pgvector:0.8.0-pg17
ports: #DARGSTACK-REMOVE
- 5433:5432 #DARGSTACK-REMOVE
secrets:
- postgres_db
- postgres_password
- postgres_user
volumes:
- reccoom_postgres_data:/var/lib/postgresql/data/
redpanda:
# You can access the event streaming platform's ui as described under `redpanda-console`.
command:
Expand Down Expand Up @@ -581,6 +596,9 @@ volumes:
prometheus_data:
# The metrics monitoring's data.
{}
reccoom_postgres_data:
# The recommendation database's data.
{}
redpanda_data:
# The message queue's data.
{}