pleroma-docker/README.md

171 lines
7.1 KiB
Markdown
Raw Permalink Normal View History

# Pleroma-Docker (Unofficial)
2018-04-08 16:49:07 -04:00
2021-08-16 12:16:54 -04:00
[Pleroma](https://pleroma.social/) is a selfhosted social network that uses ActivityPub.
2018-04-08 16:49:07 -04:00
This repository dockerizes it for easier deployment.
<hr>
```cpp
#include <LICENSE>
/*
* This repository comes with ABSOLUTELY NO WARRANTY
*
2019-08-25 18:07:59 -04:00
* I will happily help you with issues related to this script,
* but I am not responsible for burning servers, angry users, fedi drama,
2019-01-09 19:06:29 -05:00
* thermonuclear war, or you getting fired because your boss saw your NSFW posts.
2019-08-25 18:07:59 -04:00
*
* Please do some research if you have any concerns about the
2021-08-16 12:16:54 -04:00
* included features or software *before* using it.
*/
```
<hr>
2018-04-08 16:49:07 -04:00
2019-04-11 19:14:25 -04:00
## In the Wild
2021-03-25 06:14:55 -04:00
`cofe.rocks` is always managed by this script.<br/>
2020-05-03 10:31:53 -04:00
Take a look at [hosted/pleroma](/hosted/pleroma) if you get stuck or need some inspiration.
2019-04-11 19:14:25 -04:00
2021-03-25 06:08:09 -04:00
Additionally it's known to run on (in no particular order):
- social.interhop.org
- social.technodruide.ca
2021-08-16 12:16:54 -04:00
- is.badat.dev
2021-03-25 06:08:09 -04:00
2021-03-25 06:14:55 -04:00
Does your instance use pleroma-docker?<br/>
2019-04-11 19:14:25 -04:00
Let me know and I'll add you to this list.
2018-04-08 16:49:07 -04:00
## Docs
2018-04-08 16:49:07 -04:00
2019-04-11 19:26:21 -04:00
These docs assume that you have at least a basic understanding
of the pleroma installation process and common docker commands.
2020-05-03 10:33:01 -04:00
If you have questions about Pleroma head over to https://docs.pleroma.social/.
2019-04-11 19:26:21 -04:00
For help with docker check out https://docs.docker.com/.
2019-08-25 12:44:49 -04:00
For other problems related to this script, contact me or open an issue :)
2019-01-09 19:27:52 -05:00
### Prerequisites
2019-08-25 17:59:29 -04:00
- ~1GB of free HDD space
2019-04-11 19:14:25 -04:00
- `git` if you want smart build caches
2019-08-25 12:44:49 -04:00
- `curl`, `jq`, and `dialog` if you want to use `./pleroma.sh mod`
- Bash 4+
2019-04-11 19:14:25 -04:00
- Docker 18.06+ and docker-compose 1.22+
2019-01-09 19:27:52 -05:00
2019-01-09 19:06:29 -05:00
### Installation
2018-04-08 16:49:07 -04:00
- Clone this repository
2019-01-09 19:27:52 -05:00
- Create a `config.exs` and `.env` file
2019-08-25 12:44:49 -04:00
- Run `./pleroma.sh build` and `./pleroma.sh up`
2019-08-25 17:41:08 -04:00
- [Configure a reverse-proxy](#my-instance-is-up-how-do-i-reach-it)
2018-04-08 16:49:07 -04:00
- Profit!
2020-05-03 10:33:01 -04:00
Hint:
2021-03-25 06:14:55 -04:00
You can also use normal `docker-compose` commands to maintain your setup.<br/>
2019-08-25 12:44:49 -04:00
The only command that you cannot use is `docker-compose build` due to build caching.
2019-08-25 17:59:29 -04:00
### Configuration
2021-03-25 06:14:55 -04:00
All the pleroma options that you usually put into your `*.secret.exs` now go into `config.exs`.<br/>
`.env` stores config values that need to be known at orchestration/build time.<br/>
2019-08-25 17:59:29 -04:00
Documentation for the possible values is inside of that file.
2019-01-09 19:06:29 -05:00
### Updates
2021-03-25 06:14:55 -04:00
Run `./pleroma.sh build` again and start the updated image with `./pleroma.sh up`.<br/>
2019-01-09 19:06:29 -05:00
You don't need to stop your pleroma server for either of those commands.
2018-04-08 16:49:07 -04:00
2019-01-09 19:06:29 -05:00
### Maintenance
2018-08-18 17:32:33 -04:00
2021-03-25 06:14:55 -04:00
Pleroma maintenance is usually done with mix tasks.<br/>
You can run these tasks in your running pleroma server using `./pleroma.sh mix [task] [arguments...]`.<br/>
For example: `./pleroma.sh mix pleroma.user new sn0w ...`<br/>
2019-08-25 18:02:45 -04:00
If you need to fix bigger problems you can also spawn a shell with `./pleroma.sh enter`.
2021-08-16 12:16:54 -04:00
### Postgres Upgrades
Postgres upgrades are a slow process in docker (even more than usual) because we can't utilize `pg_upgrade` in any sensible way.<br/>
If you ever wish to upgrade postgres to a new major release for some reason, here's a list of things you'll need to do.
- Inform your users about the impending downtime
- Seriously this can take anywhere from a couple hours to a week depending on your instance
- Make sure you have enough free disk space or some network drive to dump to, we can't do in-place upgrades
- Stop pleroma (`docker-compose stop server`)
- Dump the current database into an SQL file (`docker-compose exec db pg_dumpall -U pleroma > /my/sql/location/pleroma.sql`)
- Remove the old containers (`docker-compose down`)
- Modify the postgres version in `docker-compose.yml` to your desired release
- Delete `data/db` or move it into some different place (might be handy if you want to abort/revert the migration)
- Start the new postgres container (`docker-compose up -d db`)
- Start the import (`docker-compose exec -T db psql -U pleroma < /my/sql/location/pleroma.sql`)
- Wait for a possibly ridculously long time
- Boot pleroma again (`docker-compose up -d`)
- Wait for service to stabilize while federation catches up
- Done!
2019-08-25 17:59:29 -04:00
### Customization
2021-03-25 06:14:55 -04:00
Add your customizations (and their folder structure) to `custom.d/`.<br/>
They will be copied into the right place when the container starts.<br/>
You can even replace/patch pleromas code with this, because the project is recompiled at startup if needed.
2019-08-25 17:59:29 -04:00
2021-03-25 06:14:55 -04:00
In general: Prepending `custom.d/` to pleromas customization guides should work all the time.<br/>
2019-08-25 18:06:00 -04:00
Check them out in the [pleroma documentation](https://docs.pleroma.social/small_customizations.html#content).
2019-08-25 17:59:29 -04:00
2020-09-04 11:41:53 -04:00
For example: A custom thumbnail now goes into `custom.d/` + `instance/static/instance/thumbnail.jpeg`.
2019-08-25 17:59:29 -04:00
### Patches
2021-03-25 06:14:55 -04:00
Works exactly like customization, but we have a neat little helper here.<br/>
2019-08-25 17:59:29 -04:00
Use `./pleroma.sh mod [regex]` to mod any file that ships with pleroma, without having to type the complete path.
2019-08-25 12:44:49 -04:00
### My instance is up, how do I reach it?
2019-08-25 17:47:25 -04:00
To reach Gopher or SSH, just uncomment the port-forward in your `docker-compose.yml`.
2019-08-25 12:44:49 -04:00
2021-03-25 06:14:55 -04:00
To reach HTTP you will have to configure a "reverse-proxy".<br/>
Older versions of this project contained a huge amount of scripting to support all kinds of reverse-proxy setups.<br/>
This newer version tries to focus only on providing good pleroma tooling.<br/>
2019-08-25 17:47:25 -04:00
That makes the whole process a bit more manual, but also more flexible.
2021-03-25 06:14:55 -04:00
You can use Caddy, Traefik, Apache, nginx, or whatever else you come up with.<br/>
2019-08-25 12:44:49 -04:00
Just modify your `docker-compose.yml` accordingly.
One example would be to add an [nginx server](https://hub.docker.com/_/nginx) to your `docker-compose.yml`:
```yml
# ...
proxy:
image: nginx
init: true
restart: unless-stopped
links:
- server
volumes:
- ./my-nginx-config.conf:/etc/nginx/nginx.conf:ro
ports:
- "80:80"
- "443:443"
```
Then take a look at [the pleroma nginx example](https://git.pleroma.social/pleroma/pleroma/blob/develop/installation/pleroma.nginx) for hints about what to put into `my-nginx-config.conf`.
Using apache would work in a very similar way (see [Apache Docker Docs](https://hub.docker.com/_/httpd) and [the pleroma apache example](https://git.pleroma.social/pleroma/pleroma/blob/develop/installation/pleroma-apache.conf)).
2021-03-25 06:14:55 -04:00
The target that you proxy to is called `http://server:4000/`.<br/>
2019-08-25 12:44:49 -04:00
This will work automagically when the proxy also lives inside of docker.
2018-08-18 17:32:33 -04:00
2019-08-25 17:47:25 -04:00
If you need help with this, or if you think that this needs more documentation, please let me know.
2021-03-25 06:14:55 -04:00
Something that cofe.rocks uses is simple port-forwarding of the `server` container to the host's `127.0.0.1`.<br/>
From there on, the natively installed nginx server acts as a proxy to the open internet.<br/>
2020-05-03 10:31:53 -04:00
You can take a look at cofe's [compose yaml](/hosted/pleroma/src/branch/master/docker-compose.yml) and [proxy config](/hosted/pleroma/src/branch/master/proxy.xconf) if that setup sounds interesting.
2019-08-25 12:44:49 -04:00
### Attribution
2019-04-11 19:26:21 -04:00
Thanks to [Angristan](https://github.com/Angristan/dockerfiles/tree/master/pleroma) and [RX14](https://github.com/RX14/kurisu.rx14.co.uk/blob/master/services/iscute.moe/pleroma/Dockerfile) for their dockerfiles, which served as an inspiration for the early versions of this script.
2020-05-03 10:33:01 -04:00
The current version is based on the [offical install instructions](https://docs.pleroma.social/alpine_linux_en.html).
2019-04-11 19:26:21 -04:00
Thanks to all people who contributed to those.