Skip to content

Commit 4f184d2

Browse files
committed
Remove/Update some forgetten parts
1 parent cf9c6c9 commit 4f184d2

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CONSOLE=bin/console
44
PHPCSFIXER?=$(EXEC) php -d memory_limit=1024m vendor/bin/php-cs-fixer
55

66
.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
88
.PHONY: db-diff db-migrate db-rollback db-fixtures db-validate
99
.PHONY: watch assets assets-build
1010
.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
4848
rm -f var/.php_cs.cache
4949

5050
clean: clear ## Clear and remove dependencies
51-
rm -rf vendor node_modules
51+
rm -rf vendor
5252

5353

5454
##
@@ -131,8 +131,8 @@ up:
131131
$(DOCKER_COMPOSE) up -d --remove-orphans
132132

133133
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
136136

137137
docker-compose.override.yml:
138138
ifneq ($(wildcard docker-compose.override.yml),docker-compose.override.yml)

docker-compose.yml

-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ services:
77
dockerfile: NginxDockerfile
88
depends_on:
99
- app
10-
networks:
11-
- frontend
1210
volumes:
1311
- .:/app
1412

1513
app:
1614
build:
1715
context: .
1816
target: app-dev
19-
networks:
20-
- frontend
2117
volumes:
2218
- .:/app

0 commit comments

Comments
 (0)