aboutsummaryrefslogtreecommitdiffstats
path: root/container.env.example
diff options
context:
space:
mode:
authorMax <Max-TheCat@users.noreply.github.com>2024-01-11 15:25:08 -0500
committerGitHub <noreply@github.com>2024-01-11 15:25:08 -0500
commit76427c9f130adb90f90cccc84b92dd49f5147ed5 (patch)
tree5e1ac61ffaff7040e3b85a98cee9f4fd11dac54a /container.env.example
parentddce4d0bdbf657de1bf11ce2722ed0435868e41d (diff)
Docker container version (#39)
* + Dockerfile and compose file + Scripts dir and startup script + Build image npm script * * Moves env to file * + Tags image with info from package.json * Moves image creation to script * Updates README * Update README.md Co-authored-by: Sebastien Castiel <sebastien@castiel.me> --------- Co-authored-by: Maxime Jacob <mjacob-no-reply@proton.me> Co-authored-by: Sebastien Castiel <sebastien@castiel.me>
Diffstat (limited to 'container.env.example')
-rw-r--r--container.env.example7
1 files changed, 7 insertions, 0 deletions
diff --git a/container.env.example b/container.env.example
new file mode 100644
index 0000000..ecfc160
--- /dev/null
+++ b/container.env.example
@@ -0,0 +1,7 @@
+# db
+POSTGRES_PASSWORD=1234
+
+# app
+POSTGRES_PRISMA_URL=postgresql://postgres:${POSTGRES_PASSWORD}@db
+POSTGRES_URL_NON_POOLING=postgresql://postgres:${POSTGRES_PASSWORD}@db
+NEXT_PUBLIC_BASE_URL=http://localhost:3000