fix: remove container names for name collisions

This commit is contained in:
Admin
2026-03-02 20:08:46 +05:00
parent 11d2eaa0e5
commit baab66823d

View File

@@ -4,15 +4,15 @@ services:
# ─── MinIO (object storage for chapter .md files + audio cache) ───────────── # ─── MinIO (object storage for chapter .md files + audio cache) ─────────────
minio: minio:
image: minio/minio:latest image: minio/minio:latest
container_name: libnovel-minio #container_name: libnovel-minio
restart: unless-stopped restart: unless-stopped
command: server /data --console-address ":9001" command: server /data --console-address ":9001"
environment: environment:
MINIO_ROOT_USER: "${MINIO_ROOT_USER:-admin}" MINIO_ROOT_USER: "${MINIO_ROOT_USER:-admin}"
MINIO_ROOT_PASSWORD: "${MINIO_ROOT_PASSWORD:-changeme123}" MINIO_ROOT_PASSWORD: "${MINIO_ROOT_PASSWORD:-changeme123}"
ports: ports:
- "${MINIO_PORT:-9000}:9000" # S3 API - "${MINIO_PORT:-9000}:9000" # S3 API
- "${MINIO_CONSOLE_PORT:-9001}:9001" # Web console - "${MINIO_CONSOLE_PORT:-9001}:9001" # Web console
volumes: volumes:
- minio_data:/data - minio_data:/data
healthcheck: healthcheck:
@@ -25,7 +25,7 @@ services:
# Runs once to create the default buckets and then exits. # Runs once to create the default buckets and then exits.
minio-init: minio-init:
image: minio/mc:latest image: minio/mc:latest
container_name: libnovel-minio-init #container_name: libnovel-minio-init
depends_on: depends_on:
minio: minio:
condition: service_healthy condition: service_healthy
@@ -43,7 +43,7 @@ services:
# ─── PocketBase (auth + structured data: books, chapters index, ranking, progress) ── # ─── PocketBase (auth + structured data: books, chapters index, ranking, progress) ──
pocketbase: pocketbase:
image: ghcr.io/muchobien/pocketbase:latest image: ghcr.io/muchobien/pocketbase:latest
container_name: libnovel-pocketbase #container_name: libnovel-pocketbase
restart: unless-stopped restart: unless-stopped
ports: ports:
- "${POCKETBASE_PORT:-8090}:8090" - "${POCKETBASE_PORT:-8090}:8090"
@@ -58,7 +58,7 @@ services:
# ─── Browserless ──────────────────────────────────────────────────────────── # ─── Browserless ────────────────────────────────────────────────────────────
browserless: browserless:
image: ghcr.io/browserless/chromium:latest image: ghcr.io/browserless/chromium:latest
container_name: libnovel-browserless #container_name: libnovel-browserless
restart: unless-stopped restart: unless-stopped
environment: environment:
# Set a token to lock down the endpoint; the scraper reads it via # Set a token to lock down the endpoint; the scraper reads it via
@@ -87,7 +87,7 @@ services:
build: build:
context: ./scraper context: ./scraper
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: libnovel-scraper #container_name: libnovel-scraper
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
pocketbase: pocketbase: