Files
fgtools/.dockerignore
KWON 24939ab7a7 feat: add Docker support with private registry
- Add Dockerfile with vim, Korean locale, visual mode disabled
- Add docker-compose.yml with build/push support for reg.firstgarden.co.kr
- Add docker-entrypoint.sh for multi-service support
- Add .dockerignore
- Update README.md with Docker deployment guide
- Consolidate SERVICE_KEY into DATA_API_SERVICE_KEY
2025-12-31 11:16:59 +09:00

56 lines
512 B
Plaintext

# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
.eggs
*.egg
.pytest_cache
.coverage
htmlcov
# 가상환경
venv/
.venv/
ENV/
env/
# IDE
.idea/
.vscode/
*.swp
*.swo
# 로그 및 데이터 (컨테이너에서 볼륨으로 마운트)
logs/
data/
*.log
# 환경 파일 (docker-compose에서 env_file로 마운트)
.env
# 임시 파일
tmp/
temp/
*.tmp
*.bak
# Docker 관련
Dockerfile
docker-compose*.yml
.dockerignore
# 문서
*.md
!README.md
# 기타
*.sqlite
*.db