forked from ezsystems/ezplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
65 lines (50 loc) · 1.06 KB
/
.dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
### IDE files
.idea/
### Composer files
auth.json
### GIT files
.git
# Skipped as it makes build very slow and since it is needed by composer when working on dev branches
#vendor/*/*/.git
### Symfony template
# Cache and logs (Symfony2)
app/cache/*
app/logs/*
!app/cache/.keep
!app/logs/.keep
# Email spool folder
app/spool/*
# Cache, session files and logs (Symfony3)
var/cache/*
var/logs/*
var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
!var/sessions/.gitkeep
# Parameters (should be regenerated in container)
app/config/parameters.yml
# Managed by Composer
app/bootstrap.php.cache
var/bootstrap.php.cache
#bin/*
#!bin/console
#!bin/symfony_requirements
# Disabled as this is needed for dev setups unless we change dev to execute composer install automatically
#vendor/
# Assets and user uploads
web/bundles/
web/css/
web/js/
web/uploads/
web/fonts/
# Assets managed by Bower
web/assets/vendor/
# PHPUnit
app/phpunit.xml
phpunit.xml
# Build data
build/
# Composer PHAR
composer.phar
# Backup entities generated with doctrine:generate:entities command
*/Entity/*~