Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aymericbeaumet committed Jul 10, 2024
1 parent 463b43c commit 8168521
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25 deletions.
File renamed without changes.
24 changes: 0 additions & 24 deletions ai/boilerplate/docker-compose.yml

This file was deleted.

24 changes: 24 additions & 0 deletions ai/docker-compose.yml
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:
2 changes: 1 addition & 1 deletion ai/boilerplate/goapp/go.mod → ai/go.mod
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
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 8168521

Please sign in to comment.