We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b78978e commit 71201c8Copy full SHA for 71201c8
other/Dockerfile
@@ -69,6 +69,8 @@ ENV PRISMA_SCHEMA_DISABLE_ADVISORY_LOCK = "1"
69
70
# add shortcut for connecting to database CLI
71
RUN echo "#!/bin/sh\nset -x\nsqlite3 \$DATABASE_URL" > /usr/local/bin/database-cli && chmod +x /usr/local/bin/database-cli
72
+# and one for the cache database
73
+RUN echo "#!/bin/sh\nset -x\nsqlite3 \$CACHE_DATABASE_URL" > /usr/local/bin/cache-database-cli && chmod +x /usr/local/bin/cache-database-cli
74
75
WORKDIR /myapp
76
0 commit comments