mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-22 15:43:49 +01:00
- Add multi-stage build to Dockerfile for smaller production image - Move docker-compose.yml to project root for easier usage - Flatten docker/init/setup.sh to docker/setup.sh - Expand .dockerignore to exclude unnecessary files - Remove deprecated version field from compose files
36 lines
328 B
Plaintext
36 lines
328 B
Plaintext
# Build artifacts
|
|
bin/
|
|
erupe-ce
|
|
*.exe
|
|
|
|
# Docker data directories
|
|
docker/db-data/
|
|
docker/savedata/
|
|
docker/Servers/
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation and config examples
|
|
*.md
|
|
!README.md
|
|
.env
|
|
.env.*
|
|
config.json
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Test artifacts
|
|
coverage.out
|
|
*.test
|