add docker for local and production
This commit is contained in:
52
.dockerignore
Normal file
52
.dockerignore
Normal file
@@ -0,0 +1,52 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
README.md
|
||||
|
||||
# Docker files
|
||||
Dockerfile*
|
||||
docker-compose*
|
||||
.dockerignore
|
||||
|
||||
# Development files
|
||||
.env.local
|
||||
.env.development
|
||||
.env.staging
|
||||
node_modules
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# IDE files
|
||||
.vscode
|
||||
.idea
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Laravel specific
|
||||
storage/app/*
|
||||
!storage/app/.gitignore
|
||||
storage/framework/cache/*
|
||||
!storage/framework/cache/.gitignore
|
||||
storage/framework/sessions/*
|
||||
!storage/framework/sessions/.gitignore
|
||||
storage/framework/views/*
|
||||
!storage/framework/views/.gitignore
|
||||
storage/logs/*
|
||||
!storage/logs/.gitignore
|
||||
bootstrap/cache/*
|
||||
!bootstrap/cache/.gitignore
|
||||
|
||||
# Backup files
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.sql
|
||||
|
||||
# Test files
|
||||
tests/
|
||||
phpunit.xml
|
||||
Reference in New Issue
Block a user