From 64e22a61ef5e02b11ce429f2bd38c6c40fbe338c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Nov 2022 23:44:47 +0100 Subject: [PATCH] Bot Updating Documentation --- images/docker-mastodon.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/images/docker-mastodon.md b/images/docker-mastodon.md index 08728c2ce1..fb353e7f8c 100755 --- a/images/docker-mastodon.md +++ b/images/docker-mastodon.md @@ -32,12 +32,23 @@ The architectures supported by this image are: | arm64 | ✅ | arm64v8-\ | | armhf| ❌ | | +## Version Tags + +This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags. + +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable releases. | +| develop | ✅ | Pre-releases *only*. | + ## Application Setup To generate keys for `SECRET_KEY_BASE` & `OTP_SECRET` run `docker run --rm -it -w /app/www --entrypoint rake lscr.io/linuxserver/mastodon secret` once for each. To generate keys for `VAPID_PRIVATE_KEY` & `VAPID_PUBLIC_KEY` run `docker run --rm -it -w /app/www --entrypoint rake lscr.io/linuxserver/mastodon mastodon:webpush:generate_vapid_key` +To use `tootctl` you can run something like `docker exec -it -w /app/www mastodon bin/tootctl ` + This container *requires* separate postgres and redis instances to run. We support all of the official [environment variables](https://docs.joinmastodon.org/admin/config) for configuration. In place of adding them all to your run/compose you can use an env file such as [this example](https://github.com/mastodon/mastodon/blob/main/.env.production.sample) from the upstream project.