Skip to content

Commit 290a1a7

Browse files
committed
Fix: openssl not found
1 parent f9118b3 commit 290a1a7

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ TZ=America/Edmonton
77

88
# For homelab server, change the following to your server ip ex: http://192.168.x.x:3000
99
NEXTAUTH_URL=http://localhost:3000
10-
AUTH_TRUST_HOST=true
1110

1211
# AUTH_SECRET is auto-generated by deploy.sh and docker-entrypoint.sh
1312
# To set manually, uncomment and provide your own value:

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ WORKDIR /app
3232
ENV NODE_ENV=production
3333
ENV NEXT_TELEMETRY_DISABLED=1
3434

35+
RUN apk add --no-cache openssl
36+
3537
RUN addgroup --system --gid 1001 nodejs && \
3638
adduser --system --uid 1001 nextjs
3739

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- DATABASE_URL=file:/data/dev.db
1212
- AUTH_SECRET=${AUTH_SECRET:-}
1313
- NEXTAUTH_URL=${NEXTAUTH_URL}
14-
- AUTH_TRUST_HOST=${AUTH_TRUST_HOST}
14+
- AUTH_TRUST_HOST=true
1515
- OLLAMA_BASE_URL=${OLLAMA_BASE_URL}
1616
- OPENAI_API_KEY=${OPENAI_API_KEY}
1717
- DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY}

0 commit comments

Comments
 (0)