mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2024-12-04 15:06:51 +01:00
8 lines
313 B
Bash
8 lines
313 B
Bash
#!/bin/bash
|
|
(
|
|
cd "$(dirname "$(readlink -f "${0}")")/../docker-symfony/" &&
|
|
docker-compose exec php php /var/www/symfony/bin/console cache:clear &&
|
|
docker-compose exec php php /var/www/symfony/bin/console cache:clear --env=prod &&
|
|
docker-compose exec php php /var/www/symfony/bin/console cache:clear --env=test
|
|
)
|