mirror of
https://github.com/Awuqing/BackupX.git
synced 2026-05-07 04:32:41 +08:00
- Multi-stage Dockerfile (Node build + Go build + Alpine runtime) - docker-compose.yml with named volume for data persistence - In-container Nginx reverse proxy (static files + API) - Entrypoint script for graceful process management - .dockerignore for optimized build context - Updated README (zh/en) with Docker quick start and deployment docs Closes #14
27 lines
219 B
Plaintext
27 lines
219 B
Plaintext
# Dependencies
|
|
web/node_modules/
|
|
|
|
# Build artifacts
|
|
server/bin/
|
|
web/dist/
|
|
|
|
# Data & logs
|
|
data/
|
|
*.db
|
|
*.log
|
|
|
|
# IDE & OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Git
|
|
.git/
|
|
.github/
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose*.yml
|