feat: Docker 및 Docker Compose 배포 지원 추가 (네이티브/도커 하이브리드 지원)

This commit is contained in:
leeyj
2026-04-20 01:22:33 +09:00
parent 379f7eb0c4
commit 6fca65eef1
5 changed files with 134 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
version: '3.8'
services:
memo-server:
build: .
container_name: brain-dogfood
restart: always
ports:
- "5093:5093"
env_file:
- .env
volumes:
- ./data:/app/data
- ./static/uploads:/app/static/uploads
- ./logs:/app/logs
- ./config.json:/app/config.json
environment:
- TZ=Asia/Seoul
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"