1
0
Fork 0
mirror of https://github.com/matrix-org/dendrite.git synced 2025-03-02 06:44:28 -06:00
dendrite/build/docker/postgres/create_db.sh

6 lines
165 B
Bash
Raw Normal View History

2020-10-13 03:50:11 -05:00
#!/bin/sh
for db in userapi_accounts mediaapi syncapi roomserver keyserver federationapi appservice mscs; do
createdb -U dendrite -O dendrite dendrite_$db
done