docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
346 B
14 lines
346 B
3 years ago
|
#!/bin/bash
|
||
|
die() { echo >&2 "$@" ; exit 1 ; }
|
||
|
|
||
|
source ./env.production || die "no production env?"
|
||
|
|
||
|
if [ -z "$DOMAIN_NAME" ]; then
|
||
|
die "\$DOMAIN_NAME not set; things will break"
|
||
|
fi
|
||
|
|
||
|
for service in keycloak nginx hedgedoc nextcloud mastodon grafana matrix ; do
|
||
|
echo "$service: starting"
|
||
|
./$service/setup || die "$server: failed to start"
|
||
|
done
|