Docker安装
docker pull tootsuite/mastodon:latest
wget https://raw.githubusercontent.com/tootsuite/mastodon/master/docker-compose.yml
数据库postgres
docker-compose run -e POSTGRES_PASSWORD=xxxx -d db
docker exec -it [mypostgres] /bin/bash
psql -U postgres -W 使用密码登录
CREATE USER mastodon WITH PASSWORD '数据库密码(最好和数据库管理员密码不一样)' CREATEDB;
Loading Comments...