From e89c9b18432216733697be0b93ad15e43ad5ed79 Mon Sep 17 00:00:00 2001 From: Levente Orban Date: Wed, 27 Aug 2025 22:35:21 +0200 Subject: [PATCH] feat: add docker DATABASE_URL --- .env.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.example b/.env.example index 13bdeb3..c6d7b37 100644 --- a/.env.example +++ b/.env.example @@ -4,7 +4,10 @@ POSTGRES_USER=cactoide POSTGRES_PASSWORD=cactoide_password POSTGRES_PORT=5432 +# localhost DATABASE_URL="postgres://cactoide:cactoide_password@localhost:5432/cactoied_database" +# docker +# DATABASE_URL="postgres://cactoide:cactoide_password@postgres:5432/cactoied_database" # Application configuration APP_VERSION=latest