forked from ezsystems/ezplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
54 lines (41 loc) · 936 Bytes
/
.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
### 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
# Cache, session files and logs (Symfony4)
var/cache/*
var/log/*
var/sessions/*
!var/cache/.gitkeep
!var/log/.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
# Disabled as this is needed for dev setups unless we change dev to execute composer install automatically
#vendor/
# Assets and user uploads
public/bundles/
public/css/
public/js/
public/uploads/
public/fonts/
# Assets managed by Bower
public/assets/vendor/
# PHPUnit
app/phpunit.xml
phpunit.xml
# Build data
build/
# Composer PHAR
composer.phar
# Backup entities generated with doctrine:generate:entities command
*/Entity/*~