From ea5f97ab8274fcb33d438219194f8b20f9ed0782 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Tue, 14 Apr 2026 22:44:25 +0200 Subject: [PATCH] chore: Add missing image and pull_policy configurations for frontend and API services in Docker Compose --- compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compose.yml b/compose.yml index 6a5aed57..2c1b2db2 100644 --- a/compose.yml +++ b/compose.yml @@ -3,6 +3,8 @@ services: build: context: ./frontend dockerfile: Dockerfile + image: recipe-frontend:local + pull_policy: never restart: unless-stopped environment: NEXT_PUBLIC_API_URL: "http://recipe-api:8080" @@ -24,6 +26,7 @@ services: context: ./backend dockerfile: Dockerfile image: recipe-api:local + pull_policy: never restart: unless-stopped environment: DATABASE_URL: "mysql://root:${MARIADB_ROOT_PASSWORD}@recipe-db:3306/${MARIADB_DATABASE}"