Docker ignore .cache folders fixes #2891 (#2892)

This commit is contained in:
Jared Lockhart 2020-06-25 15:56:28 -04:00 коммит произвёл GitHub
Родитель 230d50a2ec
Коммит c49cad10c3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 4 добавлений и 4 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -70,6 +70,8 @@ target/
version.json
.vscode/
.psql_history
# Hosted assets
@ -86,3 +88,4 @@ app/experimenter/static/assets/
.tmontmp
app/coverage_html_report/
node_modules

Просмотреть файл

@ -1,5 +1,5 @@
.vscode
.cache
**/.cache/
.git
.gitignore
LICENSE

Просмотреть файл

@ -17,7 +17,6 @@ services:
- /app/experimenter/static/rapid/node_modules/
- assets_volume:/app/experimenter/static/assets/
- static_volume:/app/experimenter/served/
- /app/.cache
command: bash -c "/app/bin/wait-for-it.sh kinto:8888 -- python bin/setup_kinto.py;/app/bin/wait-for-it.sh db:5432 -- python /app/manage.py collectstatic --noinput;python /app/manage.py runserver 0:7001"
networks:
- private_nw
@ -33,7 +32,6 @@ services:
- /app/experimenter/static/core/node_modules/
- assets_volume:/app/experimenter/static/assets/
- static_volume:/app/experimenter/served/
- /app/.cache
command: bash -c "yarn workspace @experimenter/core watch"
yarn-rapid:
@ -46,7 +44,6 @@ services:
- /app/experimenter/static/rapid/node_modules/
- assets_volume:/app/experimenter/static/assets/
- static_volume:/app/experimenter/served/
- /app/.cache
command: bash -c "yarn workspace @experimenter/rapid watch"
worker: