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 <cursoragent@cursor.com>
This commit is contained in:
Dorian
2026-02-13 18:41:21 +00:00
parent 82a5c0a5cf
commit 20718c547e

View File

@@ -16,7 +16,6 @@ version: '3.8'
services: services:
# ── Frontend (nginx serving built Vue app) ────────────────── # ── Frontend (nginx serving built Vue app) ──────────────────
app: app:
image: indeehub-app:v2
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
@@ -44,7 +43,6 @@ services:
# ── Backend API (NestJS) ──────────────────────────────────── # ── Backend API (NestJS) ────────────────────────────────────
api: api:
image: indeehub-api:v3
build: build:
context: ./backend context: ./backend
dockerfile: Dockerfile dockerfile: Dockerfile
@@ -177,7 +175,6 @@ services:
# ── FFmpeg Transcoding Worker ─────────────────────────────── # ── FFmpeg Transcoding Worker ───────────────────────────────
ffmpeg-worker: ffmpeg-worker:
image: indeehub-ffmpeg:v3
build: build:
context: ./backend context: ./backend
dockerfile: Dockerfile.ffmpeg dockerfile: Dockerfile.ffmpeg