diff options
Diffstat (limited to '.dockerignore')
-rw-r--r-- | .dockerignore | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/.dockerignore b/.dockerignore index cdd0a894..96fd31c5 100644 --- a/.dockerignore +++ b/.dockerignore | |||
@@ -4,6 +4,9 @@ | |||
4 | .github | 4 | .github |
5 | tests | 5 | tests |
6 | 6 | ||
7 | # Docker Compose resources | ||
8 | docker-compose.yml | ||
9 | |||
7 | # Shaarli runtime resources | 10 | # Shaarli runtime resources |
8 | cache/* | 11 | cache/* |
9 | data/* | 12 | data/* |
@@ -35,10 +38,17 @@ phpmd.html | |||
35 | # User plugin configuration | 38 | # User plugin configuration |
36 | plugins/*/config.php | 39 | plugins/*/config.php |
37 | 40 | ||
38 | # HTML documentation | ||
39 | doc/html/ | ||
40 | |||
41 | # 3rd party themes | 41 | # 3rd party themes |
42 | tpl/* | 42 | tpl/* |
43 | !tpl/default | 43 | !tpl/default |
44 | !tpl/vintage | 44 | !tpl/vintage |
45 | |||
46 | # Front end | ||
47 | node_modules | ||
48 | tpl/default/js | ||
49 | tpl/default/css | ||
50 | tpl/default/fonts | ||
51 | tpl/default/img | ||
52 | tpl/vintage/js | ||
53 | tpl/vintage/css | ||
54 | tpl/vintage/img | ||