From 0ed57119d858584652c02f3a34650c4fb7f72064 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 13 Apr 2025 12:54:42 -0400 Subject: [PATCH] Added another env file --- auth_db.env.docker.sample | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 auth_db.env.docker.sample diff --git a/auth_db.env.docker.sample b/auth_db.env.docker.sample new file mode 100644 index 0000000..6b305c3 --- /dev/null +++ b/auth_db.env.docker.sample @@ -0,0 +1,6 @@ +POSTGRES_USER=icarus_test +POSTGRES_PASSWORD=password +POSTGRES_DB=icarus_auth_test +POSTGRES_HOST=icarus_auth_ab + +DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:5432/${POSTGRES_DB} \ No newline at end of file