fix: docker ignore

This commit is contained in:
u00lipp
2025-10-23 11:17:17 +02:00
parent 341c1d2fa8
commit 65a44f2e4c
3 changed files with 111 additions and 1 deletions
+75
View File
@@ -0,0 +1,75 @@
# Node modules and vendor directories
node_modules/
vendor/
# Environment files
.env.*
.env.example
# Log files
*.log
logs/
storage/logs/
# Temporary files and directories
tmp/
*.tmp
*.swp
*.swo
.DS_Store
Thumbs.db
# Build artifacts
build/
dist/
public/hot
public/storage
storage/*.key
storage/debugbar
storage/framework/cache/*
storage/framework/sessions/*
storage/framework/testing/*
storage/framework/views/*
# Test and coverage files
tests/
coverage/
*.cover
*.coverage
*.lcov
# IDE/editor-specific files
.idea/
.vscode/
*.code-workspace
# Git files
.git
.gitignore
.gitattributes
# Docker-related files
.dockerignore
docker-compose.yml
docker-compose.override.yml
# CI/CD configuration files
.github/
.gitlab-ci.yml
.circleci/
.travis.yml
# Miscellaneous files
*.bak
*.backup
*.old
*.orig
*.save
*.seed
*.cache
*.pid
*.seed
*.log
*.swp
*.swo
*.tmp
+1
View File
@@ -13,3 +13,4 @@ services:
volumes:
- .env:/var/www/html/.env
- ./database/:/var/www/html/database/
+34
View File
@@ -0,0 +1,34 @@
SESSION_DRIVER=database
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database
CACHE_STORE=database
MEMCACHED_HOST=127.0.0.1
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=log
MAIL_SCHEME=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"