forked from devgeniem/wp-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dockerignore
65 lines (53 loc) · 1.23 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
65
##
# This file is used in build phase after passing tests in Drone CI
##
# Ignore files which may accidentally be added into git
.idea
.DS_store
.vcs
.wp-cli
.mysql_history
# We don't need tests in passing builds
tests
phpcs.xml
# We don't need setup/test scripts anymore
scripts/code-style.sh
scripts/install.sh
scripts/test.sh
# No need to put other environments into production image
config/environments/testing.php
config/environments/development.php
# We don't need any docker related tmp files and directives anymore
image.tar
.docker
.drone.yml
.dockerignore
docker-compose.yml
Dockerfile
# Git is not needed after deploy
.git
.gitignore
*/.gitignore
*/*/.gitignore
.gitkeep
*/.gitkeep
*/*/.gitkeep
*/*/*/.gitkeep
# Ignore wp-core content
web/app/wp/wp-content/*
# Composer is not needed after the image is builded
composer.lock
composer.json
# Ignore composer installer helpers
vendor/composer/installers
vendor/johnpbloch/wordpress-core-installer
vendor/koodimonni/composer-dropin-installer
# Ignore dropin folders
vendor/koodimonni-language
vendor/devgeniem/better-wp-db-error
# Ignore Tests and meta files from composer packages
vendor/*/*/Tests
vendor/*/*/tests
vendor/*/*/.travis.yml
vendor/*/*/composer.json
vendor/*/*/phpunit.xml*