mirror of https://github.com/samply/bridgehead.git
19 lines
421 B
Bash
Executable File
19 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
### Note: Currently not complete, needs some features before useable for production
|
|
|
|
source lib/functions.sh
|
|
|
|
if ! lib/prerequisites.sh; then
|
|
log "Prerequisites failed, exiting"
|
|
exit
|
|
fi
|
|
source site.conf
|
|
|
|
./lib/generate.sh
|
|
|
|
log "Starting bridgehead"
|
|
|
|
docker-compose -f ${project}/docker-compose.yml --env-file site-config/${project}.env up -d
|
|
|
|
log "The bridgehead should be in online in a few seconds"
|