10 lines
391 B
Bash
Executable file
10 lines
391 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
systemctl --user stop pod-saufen
|
|
systemctl --user start pod-saufen
|
|
sleep 2
|
|
podman exec -it saufen-php /var/www/html/bin/console cache:clear
|
|
podman exec -it saufen-php /var/www/html/bin/console cache:warmup
|
|
podman exec -it saufen-php /var/www/html/bin/console asset-map:compile
|
|
|
|
echo 'yes' | podman exec -it saufen-php /var/www/html/bin/console doctrine:migrations:migrate
|