From 20718c547eb3a2868c87cbb378d013968d703cb2 Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 13 Feb 2026 18:41:21 +0000 Subject: [PATCH] Remove image tags that cause Portainer pull failures Portainer tries to pull named images from Docker Hub before building. Removing image: tags so it builds directly from Dockerfiles. The CACHEBUST build arg handles cache invalidation. Co-authored-by: Cursor --- docker-compose.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 81f359f..04e42a7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,6 @@ version: '3.8' services: # ── Frontend (nginx serving built Vue app) ────────────────── app: - image: indeehub-app:v2 build: context: . dockerfile: Dockerfile @@ -44,7 +43,6 @@ services: # ── Backend API (NestJS) ──────────────────────────────────── api: - image: indeehub-api:v3 build: context: ./backend dockerfile: Dockerfile @@ -177,7 +175,6 @@ services: # ── FFmpeg Transcoding Worker ─────────────────────────────── ffmpeg-worker: - image: indeehub-ffmpeg:v3 build: context: ./backend dockerfile: Dockerfile.ffmpeg