Skip to content

Commit

Permalink
fix redis
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Nov 10, 2024
1 parent 8cae227 commit b191207
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/shelve/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ WORKDIR /app
COPY --from=build /app/apps/shelve/.output .output
COPY --from=build /app/apps/shelve/prisma ./prisma

RUN apt-get update && apt-get install -y curl
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*

EXPOSE 3000

Expand Down
2 changes: 1 addition & 1 deletion apps/shelve/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default defineNuxtConfig({
storage: {
cache: {
driver: 'redis',
url: process.env.NUXT_PRIVATE_REDIS_URL,
url: process.env.NUXT_PRIVATE_REDIS_URL || 'redis://shelve_redis:6379',
},
}
},
Expand Down

0 comments on commit b191207

Please sign in to comment.