From 1833714761443ca6ad5231a54a4f54f0340975f1 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Wed, 23 Jul 2025 20:22:08 +0000 Subject: [PATCH] Update Docker Compose configuration for pictshare-browse service; rename service, add container name, and set environment variables for CSV file and image base URL --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9e41e1..c069c08 100644 --- a/README.md +++ b/README.md @@ -48,14 +48,17 @@ Example `compose.yml`: ```yaml services: - pictshare-images: + pictshare-browse: + container_name: pictshare-browse image: ryanehamil/pictshare-browse:latest - container_name: pictshare-images restart: unless-stopped ports: - "3000:3000" volumes: - ./uploads:/uploads:ro + environment: + - CSV_FILE=/uploads/sha1.csv + - IMAGE_BASE_URL=https:/// ``` Place your `sha1.csv` and images inside the `./uploads` directory in your project root. The container will read from this folder at startup.