You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running gullak using rootless podman. The container is built successfully as I get an exit code: 0 message. I have made minor changes to the Dockerfile and docker-compose.yml.
Error log
Command: $ podman logs -ft --details backend
2024-10-16T16:45:03.324330000+05:30 time=2024-10-16T11:15:03.324Z level=INFO msg="Successfully initialized OpenAI client" model=gpt-4o
2024-10-16T16:45:03.325637000+05:30 time=2024-10-16T11:15:03.324Z level=ERROR msg="Error initializing database" error="error creating tables: unable to open database file: out of memory (14)"
Dockerfile edits
diff --git a/Dockerfile b/Dockerfile
index 04f33bb..a6887f1 100644
--- a/Dockerfile+++ b/Dockerfile@@ -1,13 +1,13 @@-FROM golang:1.22.4 AS builder+FROM docker.io/library/golang:1.22.4 AS builder
WORKDIR /app/build
# Copy the binary
COPY --from=builder /app/build/bin/gullak.bin ./gullak.bin
-COPY config.sample.toml config.toml+COPY config.toml config.toml
docker-compose.yml edits
I need the database to persist, hence adding volumes.
I am running gullak using rootless podman. The container is built successfully as I get an
exit code: 0
message. I have made minor changes to theDockerfile
anddocker-compose.yml
.Error log
Command:
$ podman logs -ft --details backend
Dockerfile edits
docker-compose.yml edits
I need the database to persist, hence adding volumes.config.toml
The text was updated successfully, but these errors were encountered: