Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aoirint/mm.aoirint.com

Private Mattermost service
https://github.com/aoirint/mm.aoirint.com

Last synced: about 1 month ago
JSON representation

Private Mattermost service

Awesome Lists containing this project

README

        

# mm.aoirint.com

## Backup DB

```shell
docker compose exec postgres pg_dump -Fc -U mmuser mattermost > "backups/postgres_$(date '+%Y-%m-%d_%H-%M-%S').dump"
```

## Restore DB

```
cat backups/postgres.dump | docker compose exec -T postgres pg_restore -U mmuser -d mattermost
```