16 lines
318 B
Bash
16 lines
318 B
Bash
|
#!/bin/bash
|
||
|
### Note: Currently not complete, needs some features before useable for production
|
||
|
|
||
|
./prerequisites.sh
|
||
|
source site.conf
|
||
|
|
||
|
echo "Starting bridgehead"
|
||
|
|
||
|
cd ${project}
|
||
|
|
||
|
docker-compose --env-file ../site-config/${project}.env up
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
echo "The bridgehead should be in online in a few seconds"
|