commit e243527b62bc36157fed0392f6ffcb90f9aa71aa Author: Angristan Date: Sat Aug 25 18:28:19 2018 +0200 Initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1d1f7e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,32 @@ +FROM elixir:1.6-alpine + +ENV UID=911 GID=911 \ + MIX_ENV=prod + +ARG PLEROMA_VER=develop + +RUN apk -U upgrade \ + && apk add --no-cache \ + build-base \ + git + +RUN addgroup -g ${GID} pleroma \ + && adduser -h /pleroma -s /bin/sh -D -G pleroma -u ${UID} pleroma + +USER pleroma +WORKDIR pleroma + +RUN git clone -b develop https://git.pleroma.social/pleroma/pleroma.git /pleroma \ + && git checkout ${PLEROMA_VER} + +COPY config/secret.exs /pleroma/config/prod.secret.exs + +RUN mix local.rebar --force \ + && mix local.hex --force \ + && mix deps.get \ + && mix compile + +RUN mkdir /pleroma/uploads +VOLUME /pleroma/uploads/ + +CMD ["mix", "phx.server"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..19a30af --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Angristan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f3e255b --- /dev/null +++ b/README.md @@ -0,0 +1,176 @@ +# 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 + +- Based on the elixir:alpine image +- Ran as an unprivileged user +- It works great + +Sadly, this is not a reusable (e.g. I can't upload it to the Docker Hub), because for now Pleroma needs to compile the configuration. 😢 +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 + +Create a folder for your Pleroma instance. Inside, you should have `Dockerfile` and `docker-compose.yml` from this repo. + +Here is the `docker-compose.yml`. You should change the `POSTGRES_PASSWORD` variable. + +```yaml +version: '2.3' + +services: + postgres: + image: postgres:9.6-alpine + container_name: pleroma_postgres + restart: always + environment: + POSTGRES_USER: pleroma + POSTGRES_PASSWORD: pleroma + POSTGRES_DB: pleroma + volumes: + - ./postgres:/var/lib/postgresql/data + + web: + build: . + image: pleroma + container_name: pleroma_web + restart: always + ports: + - "127.0.0.1:4000:4000" + volumes: + - ./uploads:/pleroma/uploads + depends_on: + - postgres +``` + +Create the upload and config folder and give write permissions for the uploads: + +```sh +mkdir uploads config +chown -R 911:911 uploads +``` + +Pleroma needs the `citext` PostgreSQL extension, here is how to add it: + +```sh +docker-compose up -d postgres +docker exec -i pleroma_postgres psql -U pleroma -c "CREATE EXTENSION IF NOT EXISTS citext;" +docker-compose down +``` + +Configure Pleroma. Copy the following to `config/secret.exs`: + +```exs +use Mix.Config + +config :pleroma, Pleroma.Web.Endpoint, + url: [host: "pleroma.domain.tld", scheme: "https", port: 443], + secret_key_base: "" + +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: + +```sh +docker-compose build +# or +docker build -t pleroma . +``` + +I prefer the later because it's more verbose. + +Setup the database: + +```sh +docker-compose run --rm web mix ecto.migrate +``` + +You can now launch your instance: + +```sh +docker-compose up -d +``` + +Check if everything went well with: + +```sh +docker logs -f pleroma_web +``` + +You can now setup a 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). + +### Update + +By default, the Dockerfile will be built from the latest commit of the `develop` branch as Pleroma does not have releases for now. + +Thus to update, just rebuild your image and recreate your containers: + +```sh +docker-compose pull # update the PostgreSQL if needed +docker-compose build . +# or +docker build -t pleroma . +docker-compose run --rm web mix ecto.migrate # migrate the database if needed +docker-compose up -d # recreate the containers if needed +``` + +If you want to run a specific commit, you can use the `PLEROMA_VER` variable: + +```sh +docker build -t pleroma . --build-arg PLEROMA_VER=a9203ab3 +``` + +`a9203ab3` being the hash of the commit. (They're [here](https://git.pleroma.social/pleroma/pleroma/commits/develop)) + +## Other Docker images + +Here are other Pleroma Docker images that helped me build mine: + +- [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)