mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-27 05:54:02 +01:00
9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/bash
|
|
(
|
|
cd $(dirname $(readlink -f ${0}))/;
|
|
bash ./copy-configuration.sh
|
|
cd ../docker-symfony;
|
|
docker-compose build;
|
|
docker-compose up -d;
|
|
)
|