mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 22:17:26 +01:00
7 lines
163 B
Bash
7 lines
163 B
Bash
#!/bin/bash
|
|
(
|
|
cd "$(dirname "$(readlink -f "${0}")")/../docker-symfony/" &&
|
|
docker-compose exec php composer install &&
|
|
docker-compose exec php composer update
|
|
)
|