-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
463b43c
commit 8168521
Showing
6 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: '3.8' | ||
|
||
services: | ||
postgres: | ||
image: postgres:16.3-alpine3.20 # https://hub.docker.com/_/postgres | ||
environment: | ||
POSTGRES_DB: hearthands | ||
POSTGRES_USER: hearthands | ||
POSTGRES_PASSWORD: hearthands | ||
ports: | ||
- "127.0.0.1:5432:5432" # if needed, change the first 5432 to the desired local port | ||
volumes: | ||
- postgres-data:/var/lib/postgresql/data | ||
|
||
qdrant: | ||
image: qdrant/qdrant:v1.10.0 # https://hub.docker.com/r/qdrant/qdrant | ||
ports: | ||
- "127.0.0.1:6333:6333" # if needed, change the first 6333 to the desired local port | ||
volumes: | ||
- qdrant-data:/qdrant/storage | ||
|
||
volumes: | ||
postgres-data: | ||
qdrant-data: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module goapp | ||
|
||
go 1.22.3 | ||
go 1.22.5 | ||
|
||
require ( | ||
github.com/joho/godotenv v1.5.1 | ||
|
File renamed without changes.
File renamed without changes.