feat: add docker DATABASE_URL

This commit is contained in:
Levente Orban
2025-08-27 22:35:21 +02:00
parent 4b14f649d6
commit e89c9b1843

View File

@@ -4,7 +4,10 @@ POSTGRES_USER=cactoide
POSTGRES_PASSWORD=cactoide_password POSTGRES_PASSWORD=cactoide_password
POSTGRES_PORT=5432 POSTGRES_PORT=5432
# localhost
DATABASE_URL="postgres://cactoide:cactoide_password@localhost:5432/cactoied_database" DATABASE_URL="postgres://cactoide:cactoide_password@localhost:5432/cactoied_database"
# docker
# DATABASE_URL="postgres://cactoide:cactoide_password@postgres:5432/cactoied_database"
# Application configuration # Application configuration
APP_VERSION=latest APP_VERSION=latest