This repository has been archived on 2022-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
synapse/manage.sh

47 lines
854 B
Bash
Executable File

#!/bin/sh
case "$1" in
echo)
shift
echo $@
;;
borgmatic)
shift
case "$1" in
sh)
docker-compose exec borgmatic sh
;;
*)
echo "You have to choose a subcommand too, dummy."
;;
esac
;;
logs)
shift
docker-compose logs -f --tail=0
;;
postgres)
shift
case "$1" in
bash)
docker-compose exec postgres bash
;;
*)
echo "You have to choose a subcommand too, dummy."
;;
esac
;;
psql)
shift
docker-compose exec postgres psql -U synapse -d synapsedb $@
;;
*)
echo "You have to choose a command, dummy."
;;
esac