mirror of https://github.com/docker/compose.git
Merge pull request #6288 from docker/update_dockerignore
Some additional exclusions in .gitignore / .dockerignore
This commit is contained in:
commit
de8717cd07
|
@ -1,11 +1,13 @@
|
||||||
*.egg-info
|
*.egg-info
|
||||||
.coverage
|
.coverage
|
||||||
.git
|
.git
|
||||||
|
.github
|
||||||
.tox
|
.tox
|
||||||
build
|
build
|
||||||
|
binaries
|
||||||
coverage-html
|
coverage-html
|
||||||
docs/_site
|
docs/_site
|
||||||
venv
|
*venv
|
||||||
.tox
|
.tox
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
*.egg-info
|
*.egg-info
|
||||||
*.pyc
|
*.pyc
|
||||||
|
*.swo
|
||||||
|
*.swp
|
||||||
|
.cache
|
||||||
.coverage*
|
.coverage*
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
|
||||||
/.tox
|
/.tox
|
||||||
|
/binaries
|
||||||
/build
|
/build
|
||||||
|
/compose/GITSHA
|
||||||
/coverage-html
|
/coverage-html
|
||||||
/dist
|
/dist
|
||||||
/docs/_site
|
/docs/_site
|
||||||
/venv
|
/README.rst
|
||||||
README.rst
|
/*venv
|
||||||
compose/GITSHA
|
|
||||||
*.swo
|
|
||||||
*.swp
|
|
||||||
.DS_Store
|
|
||||||
.cache
|
|
||||||
.idea
|
|
||||||
|
|
Loading…
Reference in New Issue