mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
32 lines
880 B
Markdown
32 lines
880 B
Markdown
# docker mastodon
|
|
## create configuration
|
|
```bash
|
|
docker-compose run --rm web bundle exec rake mastodon:setup
|
|
```
|
|
## cleanup
|
|
```bash
|
|
cd {{path_docker_compose_files}}mastodon/
|
|
docker-compose down
|
|
docker volume rm mastodon_data mastodon_database mastodon_redis
|
|
cd {{path_docker_compose_files}} &&
|
|
rm -vR {{path_docker_compose_files}}mastodon
|
|
```
|
|
|
|
## access terminal
|
|
```bash
|
|
docker exec -it mastodon-web-1 /bin/bash
|
|
```
|
|
|
|
## set rights
|
|
|
|
After setting up mastodon you need to give the rights
|
|
|
|
```bash
|
|
docker exec -it -u root mastodon-web-1 chown -R 991:991 public
|
|
```
|
|
|
|
## further information
|
|
- https://goneuland.de/mastodon-mit-docker-und-traefik-installieren/
|
|
- https://gist.github.com/TrillCyborg/84939cd4013ace9960031b803a0590c4
|
|
- https://www.2daygeek.com/linux-command-check-website-is-up-down-alive/
|
|
- https://vitobotta.com/2022/11/07/setting-up-a-personal-mastodon-instance/ |