8 lines
324 B
Bash
8 lines
324 B
Bash
#!/usr/bin/env sh
|
|
|
|
systemctl --user stop pod-futtern
|
|
systemctl --user start pod-futtern
|
|
sleep 2
|
|
podman exec -it futtern-php /var/www/html/bin/console cache:clear
|
|
podman exec -it futtern-php /var/www/html/bin/console cache:warmup
|
|
echo 'yes' | podman exec -it futtern-php /var/www/html/bin/console doctrine:migrations:migrate
|