mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
5 lines
220 B
Bash
5 lines
220 B
Bash
#!/bin/bash
|
|
cd "$(dirname "$(readlink -f "${0}")")/../docker-symfony/" || exit 1
|
|
docker-compose exec php php bin/console doctrine:database:drop --force &&
|
|
docker-compose exec php php bin/console doctrine:database:create
|