rebased-podman/README.md

164 lines
5.5 KiB
Markdown
Raw Normal View History

2022-03-16 16:21:51 +01:00
# Pleroma
[Pleroma](https://pleroma.social/) is a federated social networking platform, compatible with GNU social and other OStatus implementations. It is free software licensed under the AGPLv3.
It actually consists of two components: a backend, named simply Pleroma, and a user-facing frontend, named Pleroma-FE.
Its main advantages are its lightness and speed.
![Pleroma](https://i.imgur.com/VftiTlR.png)
_Pleromians trying to understand the memes_
## Features
2022-03-16 16:46:38 +01:00
This Podman set up is adapted from [angristan's docker-pleroma](https://github.com/angristan/docker-pleroma). I muddled my way through the set up to get a final working set up. There may be some missed steps in the below, but ultimately this is what lead me to getting things running nicely.
A quick further note. I have included the `config :pleroma, configurable_from_database: true` configuration and the `pleroma_ctl config migrate_to_db` procedure. This means a lot of the actual config.exs parts can be eliminated completely, but I've left them in for clarity.
- adapted from [angristan/docker-pleroma](https://github.com/angristan/docker-pleroma)
2022-03-16 16:21:51 +01:00
- Based on the elixir:alpine image
- Ran as an unprivileged user
- It works great
2022-03-16 16:46:38 +01:00
As with Angristan's Docker-Pleroma: this is not a reusable (e.g. It can't be uploaded to the Docker Hub), because for now Pleroma needs to compile the configuration. 😢
2022-03-16 16:21:51 +01:00
Thus you will need to build the image yourself, but I explain how to do it below.
## Build-time variables
- **`PLEROMA_VER`** : Pleroma version (latest commit of the [`develop` branch](https://git.pleroma.social/pleroma/pleroma) by default)
- **`GID`**: group id (default: `911`)
- **`UID`**: user id (default: `911`)
## Usage
### Installation
2022-03-16 16:46:38 +01:00
Create a folder for your Pleroma instance. Inside, you should have `Dockerfile` and `podman-run.sh` from this repo.
2022-03-16 16:21:51 +01:00
2022-03-16 16:46:38 +01:00
You should change the `POSTGRES_PASSWORD` variable in the `podman-run.sh` file.
2022-03-16 16:21:51 +01:00
2022-03-16 16:46:38 +01:00
Create the upload and config folder and give write permissions for the uploads:
The `podman-run.sh` script does this automatically.
2022-03-16 16:21:51 +01:00
```sh
mkdir uploads config
chown -R 911:911 uploads
```
Pleroma needs the `citext` PostgreSQL extension, here is how to add it:
2022-03-16 16:46:38 +01:00
The `podman-run.sh` script does this automatically when run with the `db-setup` argument.
2022-03-16 16:21:51 +01:00
```sh
2022-03-16 16:46:38 +01:00
./podman-run.sh db-setup
```
This creates a pod and the postgresql container then runs the below
```sh
2022-03-21 17:22:13 +01:00
``You don't need to do this bit
2022-03-16 16:46:38 +01:00
podman exec -i pleroma-db psql -U pleroma -c "CREATE EXTENSION IF NOT EXISTS citext;"
2022-03-21 17:22:13 +01:00
``You don't need to do that bit
2022-03-16 16:21:51 +01:00
```
Configure Pleroma. Copy the following to `config/secret.exs`:
```exs
use Mix.Config
config :pleroma, Pleroma.Web.Endpoint,
http: [ ip: {0, 0, 0, 0}, ],
url: [host: "pleroma.domain.tld", scheme: "https", port: 443],
secret_key_base: "<use 'openssl rand -base64 48' to generate a key>"
config :pleroma, :instance,
name: "Pleroma",
email: "admin@email.tld",
limit: 5000,
registrations_open: true
config :pleroma, :media_proxy,
enabled: false,
redirect_on_failure: true,
base_url: "https://cache.domain.tld"
# Configure your database
config :pleroma, Pleroma.Repo,
adapter: Ecto.Adapters.Postgres,
username: "pleroma",
password: "pleroma",
database: "pleroma",
hostname: "postgres",
pool_size: 10
```
You need to change at least:
- `host`
- `secret_key_base`
- `email`
Make sure your PostgreSQL parameters are ok.
You can now build the image. 2 way of doing it:
2022-03-16 16:46:38 +01:00
Again, the `podman-run.sh` script has runtime parameters to do this.
2022-03-16 16:21:51 +01:00
```sh
2022-03-16 16:46:38 +01:00
./podman-run.sh build-setup
2022-03-16 16:21:51 +01:00
```
2022-03-16 16:46:38 +01:00
This builds the container image and does the following:
Sets up the database:
2022-03-16 16:21:51 +01:00
```sh
2022-03-21 17:22:13 +01:00
``You don't need to do this
2022-03-16 16:46:38 +01:00
podman exec pleroma-web mix ecto.migrate
```
and also... migrates config to the DB
```sh
podman exec pleroma-web /pleroma/bin/pleroma_ctl config migrate_to_db
2022-03-21 17:22:13 +01:00
``You don't need to do that
2022-03-16 16:21:51 +01:00
```
Get your web push keys and copy them to `secret.exs`:
2022-03-16 16:46:38 +01:00
Again, the `podman-run.sh` script has runtime parameters to do this.
```sh
./podman-run.sh gen-keypair
```
2022-03-16 16:55:23 +01:00
Which sets up the containers again and runs the following:
2022-03-16 16:21:51 +01:00
```
2022-03-16 16:46:38 +01:00
>You don't need to do this<
podman exec pleroma-web mix web_push.gen.keypair
>You don't need to do that<
2022-03-16 16:21:51 +01:00
```
2022-03-16 16:55:23 +01:00
Put the output in your secret.exs (may not be necessary due to DB migration of config, but I've left it here for clarity again)
2022-03-16 16:21:51 +01:00
You will need to build the image again, to pick up your updated `secret.exs` file:
2022-03-16 16:46:38 +01:00
Once again, `podman-run.sh` has a parameter for it:
```sh
./podman-run.sh final-build
2022-03-16 16:21:51 +01:00
```
You can now launch your instance:
```sh
2022-03-16 16:46:38 +01:00
podman pod start pleroma-pod
2022-03-16 16:21:51 +01:00
```
Check if everything went well with:
```sh
2022-03-16 16:46:38 +01:00
podman logs -f pleroma-web
2022-03-16 16:21:51 +01:00
```
2022-03-16 16:46:38 +01:00
You can now setup a HAProxy or Nginx reverse proxy in a container or on your host by using the [example Nginx config](https://git.pleroma.social/pleroma/pleroma/blob/develop/installation/pleroma.nginx).
2022-03-16 16:21:51 +01:00
2022-03-16 16:46:38 +01:00
## Final Notes
2022-03-16 16:21:51 +01:00
2022-03-16 16:46:38 +01:00
As with anything, I've only tested this on my systems, and the process of going through getting things working may have meant some steps are missing from this guide. At some point I will test this process again to ensure the script works well, but if anyone has any queries about it then let me know.
2022-03-16 16:21:51 +01:00
2022-03-16 16:55:23 +01:00
## Other Container images
2022-03-16 16:21:51 +01:00
2022-03-16 16:46:38 +01:00
Here are other Pleroma Container images that helped me build mine:
2022-03-16 16:21:51 +01:00
2022-03-16 16:46:38 +01:00
- [angristan/docker-pleroma](https://github.com/angristan/docker-pleroma) - which this repo is adapted from
2022-03-16 16:21:51 +01:00
- [potproject/docker-pleroma](https://github.com/potproject/docker-pleroma)
- [rysiek/docker-pleroma](https://git.pleroma.social/rysiek/docker-pleroma)
- [RX14/iscute.moe](https://github.com/RX14/kurisu.rx14.co.uk/blob/master/services/iscute.moe/pleroma/Dockerfile)