운영 및 테스트 환경의 map_config.json 볼륨 마운트를 읽기 전용(ro)에서 읽기/쓰기 가능(rw)으로 변경

This commit is contained in:
이태훈
2026-06-29 16:56:02 +09:00
parent 615523fb90
commit b5d18b6839
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ services:
PORT: 3000 PORT: 3000
volumes: volumes:
- ./uploads:/app/uploads - ./uploads:/app/uploads
- ./map_config.json:/app/map_config.json:ro - ./map_config.json:/app/map_config.json
expose: expose:
- "3000" - "3000"
restart: unless-stopped restart: unless-stopped

View File

@@ -22,7 +22,7 @@ services:
- "3000:3000" - "3000:3000"
volumes: volumes:
- ./uploads:/app/uploads - ./uploads:/app/uploads
- ./map_config.json:/app/map_config.json:ro - ./map_config.json:/app/map_config.json
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"] test: ["CMD", "curl", "-f", "http://localhost:3000/health"]