diff options
Diffstat (limited to '.dockerignore')
-rw-r--r-- | .dockerignore | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..9a18e085 --- /dev/null +++ b/.dockerignore | |||
@@ -0,0 +1,34 @@ | |||
1 | # Docker-ignore | ||
2 | # Note: .git/ is kept for HTML documentation generation | ||
3 | tests | ||
4 | |||
5 | # Shaarli runtime resources | ||
6 | cache/* | ||
7 | data/* | ||
8 | pagecache/* | ||
9 | tmp/* | ||
10 | |||
11 | # Eclipse project files | ||
12 | .settings | ||
13 | .buildpath | ||
14 | .project | ||
15 | |||
16 | # Raintpl generated pages | ||
17 | *.rtpl.php | ||
18 | |||
19 | # 3rd-party dependencies | ||
20 | composer.lock | ||
21 | vendor/ | ||
22 | |||
23 | # Release archives | ||
24 | *.tar | ||
25 | *.zip | ||
26 | |||
27 | # Development and test resources | ||
28 | coverage | ||
29 | doxygen | ||
30 | sandbox | ||
31 | phpmd.html | ||
32 | |||
33 | # User plugin configuration | ||
34 | plugins/*/config.php | ||