-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.dockerignore
More file actions
66 lines (55 loc) 路 1.49 KB
/
Copy path.dockerignore
File metadata and controls
66 lines (55 loc) 路 1.49 KB
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
65
66
# Deny list of paths excluded from the container image build context.
# Everything not listed here is included into the image.
#
# Never let VCS internals, secrets, local overrides, database dumps or
# host-installed dependencies enter the image: they leak data, bloat the
# context and override the in-image build results.
# VCS, IDE and OS files.
.git
.idea
.vscode
**/.DS_Store
# Credentials. The package token reaches the build through a build secret.
auth*
# Drupal directories generated by Composer during the image build.
web/core
web/libraries
web/modules/contrib
web/profiles/contrib
web/themes/contrib
drush/Commands/contrib
# Local settings overrides.
web/sites/*/settings.local.php
web/sites/*/services.local.yml
# Content files and test artifacts.
web/sites/*/files
web/sites/simpletest
#;< VORTEX_DEV
# In-tree test harness; consumer sites get tooling from packagist.
.vortex/*
!.vortex/tooling
.vortex/tooling/tests
.vortex/tooling/playground
.vortex/tooling/vendor
README.dist.md
#;> VORTEX_DEV
# Dependencies are installed during the image build.
vendor
node_modules
web/themes/**/node_modules
# Theme build assets are compiled during the image build.
web/themes/**/build
# Caches, data, logs and temporary artifacts.
**/.artifacts
**/.data
**/.logs
**/.phpunit.cache
**/.twig-cs-fixer.cache
#;< CI_PROVIDER_GHA
# Database cache key files written into the workspace by the CI workflow.
db_cache_*
#;> CI_PROVIDER_GHA
# Local override files.
docker-compose.override.yml
.env.local
.ahoy.local.yml