From 76427c9f130adb90f90cccc84b92dd49f5147ed5 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 11 Jan 2024 15:25:08 -0500 Subject: 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 --------- Co-authored-by: Maxime Jacob Co-authored-by: Sebastien Castiel --- container.env.example | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 container.env.example (limited to 'container.env.example') 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 -- cgit v1.3