Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aoirint/mm.aoirint.com
- Owner: aoirint
- License: mit
- Created: 2022-11-13T14:01:36.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T06:33:38.000Z (10 months ago)
- Last Synced: 2024-03-20T07:38:15.944Z (10 months ago)
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```