api_yearlist_for_bug_image_reg

This commit is contained in:
2025-12-22 20:18:54 +09:00
parent 2a314dac7b
commit 6d5850d200
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ services:
dockerfile: Dockerfile-dev dockerfile: Dockerfile-dev
image: kamco-changedetection-api:${IMAGE_TAG:-latest} image: kamco-changedetection-api:${IMAGE_TAG:-latest}
container_name: kamco-changedetection-api container_name: kamco-changedetection-api
user: "1000:1000"
ports: ports:
- "7100:8080" - "7100:8080"
environment: environment:

View File

@@ -16,7 +16,7 @@ public class FileConfig {
// private String tmpSyncDir = rootSyncDir + "tmp\\"; // private String tmpSyncDir = rootSyncDir + "tmp\\";
private String rootSyncDir = "/app/original-images/"; private String rootSyncDir = "/app/original-images/";
private String tmpSyncDir = rootSyncDir + "tmp/"; private String tmpSyncDir = "/api/tmp/";
private String syncFileExt = "tfw,tif"; private String syncFileExt = "tfw,tif";
} }