2022-11-15 11:56:48 +01:00
|
|
|
# docker mastodon
|
|
|
|
## create configuration
|
|
|
|
```bash
|
2023-04-19 00:03:13 +02:00
|
|
|
docker-compose run --rm web bundle exec rake mastodon:setup
|
2022-11-15 11:56:48 +01:00
|
|
|
```
|
2022-11-15 21:43:05 +01:00
|
|
|
## cleanup
|
|
|
|
```bash
|
2023-04-26 11:52:11 +02:00
|
|
|
cd {{path_docker_compose_files}}mastodon/
|
2023-04-19 00:03:13 +02:00
|
|
|
docker-compose down
|
2022-11-15 21:43:05 +01:00
|
|
|
docker volume rm mastodon_data mastodon_database mastodon_redis
|
2023-04-26 11:52:11 +02:00
|
|
|
cd {{path_docker_compose_files}} &&
|
|
|
|
rm -vR {{path_docker_compose_files}}mastodon
|
2022-11-15 21:43:05 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## access terminal
|
|
|
|
```bash
|
2022-11-15 22:09:40 +01:00
|
|
|
docker exec -it mastodon-web-1 /bin/bash
|
2022-11-15 21:43:05 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## set rights
|
2022-11-15 22:09:40 +01:00
|
|
|
|
|
|
|
After setting up mastodon you need to give the rights
|
|
|
|
|
2022-11-15 21:43:05 +01:00
|
|
|
```bash
|
2022-11-15 22:09:40 +01:00
|
|
|
docker exec -it -u root mastodon-web-1 chown -R 991:991 public
|
2022-11-15 21:43:05 +01:00
|
|
|
```
|
2022-11-15 11:56:48 +01:00
|
|
|
|
|
|
|
## further information
|
2023-08-22 23:56:56 +02:00
|
|
|
- https://goneuland.de/mastodon-mit-docker-und-traefik-installieren/
|
2022-11-15 11:56:48 +01:00
|
|
|
- https://gist.github.com/TrillCyborg/84939cd4013ace9960031b803a0590c4
|
2022-11-15 21:43:05 +01:00
|
|
|
- https://www.2daygeek.com/linux-command-check-website-is-up-down-alive/
|
|
|
|
- https://vitobotta.com/2022/11/07/setting-up-a-personal-mastodon-instance/
|