0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-15 23:48:57 +02:00
dendrite/docker/postgres/create_db.sh
mujx 1bcb673e3c Set up a development environment with docker (#387)
Signed-off-by: Konstantinos Sideris <sideris.konstantin@gmail.com>
2018-01-02 18:26:37 +00:00

5 lines
162 B
Bash

#!/bin/bash
for db in account device mediaapi syncapi roomserver serverkey federationsender publicroomsapi naffka; do
createdb -O dendrite dendrite_$db
done