MastodonMastodon
🎋

Mastodon

Last edited time
Nov 21, 2021 04:42 AM
Created
Nov 15, 2021 01:29 PM
Tags

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...