Skip to content

Commit dd5f7d9

Browse files
committed
feat: updated app.env with correct db url
1 parent fe52330 commit dd5f7d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imageroot/actions/configure-module/10configure_environment_vars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ agent.write_envfile("database.env", db)
3838
HOST = data.get('host')
3939
REDIS_SERVER_HOST= data.get("REDIS_SERVER_HOST", "redis-app")
4040
DATABASE_URL= data.get("DATABASE_URL", "postgres://affine:affine@postgres:5432/affine")
41-
POSTGRES_URL = f"postgres://{POSTGRES_USER}:{POSTGRES_PASSWORD}@postgres:5432/{POSTGRES_DB}"
41+
POSTGRES_URL = f"postgres://{POSTGRES_USER}:{POSTGRES_PASSWORD}@postgresql-app:5432/{POSTGRES_DB}"
4242
NODE_ENV= data.get("NODE_ENV", "production")
4343
AFFINE_ADMIN_EMAIL= data.get("AFFINE_ADMIN_EMAIL", "admin")
4444
AFFINE_ADMIN_PASSWORD= data.get("AFFINE_ADMIN_PASSWORD", "admin1234")

0 commit comments

Comments
 (0)