From c4c0511fc312c972275d9b7a79fc6ad1fc107804 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sat, 7 Mar 2026 09:39:45 +0700 Subject: [PATCH] fix: Correct build directive to image in postgres service configuration --- postgres/compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/compose.yml b/postgres/compose.yml index 40fe677..e935759 100644 --- a/postgres/compose.yml +++ b/postgres/compose.yml @@ -1,7 +1,7 @@ services: postgres: # run `just build postgres` first - build: database-postgres:latest + image: database-postgres:latest restart: unless-stopped environment: POSTGRES_USER: ${POSTGRES_USER:-postgres}