File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CONSOLE=bin/console
4
4
PHPCSFIXER? =$(EXEC ) php -d memory_limit=1024m vendor/bin/php-cs-fixer
5
5
6
6
.DEFAULT_GOAL := help
7
- .PHONY : help start stop restart install uninstall reset clear-cache tty clear clean
7
+ .PHONY : help start stop restart install uninstall reset clear-cache shell clear clean
8
8
.PHONY : db-diff db-migrate db-rollback db-fixtures db-validate
9
9
.PHONY : watch assets assets-build
10
10
.PHONY : tests lint lint-symfony lint-yaml lint-twig lint-xliff php-cs php-cs-fix security-check test-schema test-all
@@ -48,7 +48,7 @@ clear: perm
48
48
rm -f var/.php_cs.cache
49
49
50
50
clean : clear # # Clear and remove dependencies
51
- rm -rf vendor node_modules
51
+ rm -rf vendor
52
52
53
53
54
54
# #
131
131
$(DOCKER_COMPOSE ) up -d --remove-orphans
132
132
133
133
perm :
134
- $(EXEC ) chmod -R 777 node_modules vendor
135
- $(EXEC ) chown -R www-data:root node_modules vendor
134
+ $(EXEC ) chmod -R 777 vendor
135
+ $(EXEC ) chown -R www-data:root vendor
136
136
137
137
docker-compose.override.yml :
138
138
ifneq ($(wildcard docker-compose.override.yml) ,docker-compose.override.yml)
Original file line number Diff line number Diff line change @@ -7,16 +7,12 @@ services:
7
7
dockerfile : NginxDockerfile
8
8
depends_on :
9
9
- app
10
- networks :
11
- - frontend
12
10
volumes :
13
11
- .:/app
14
12
15
13
app :
16
14
build :
17
15
context : .
18
16
target : app-dev
19
- networks :
20
- - frontend
21
17
volumes :
22
18
- .:/app
You can’t perform that action at this time.
0 commit comments