From 54260999539b32f015d9b2525112a240e3ec1e90 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Wed, 27 Sep 2023 01:14:52 +0000 Subject: [PATCH] Workflow update --- lsio/mastodon/docker-compose.yaml | 2 ++ lsio/mastodon/docker-run.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/lsio/mastodon/docker-compose.yaml b/lsio/mastodon/docker-compose.yaml index a3611e3..a8dcc2d 100644 --- a/lsio/mastodon/docker-compose.yaml +++ b/lsio/mastodon/docker-compose.yaml @@ -81,6 +81,8 @@ services: - SIDEKIQ_THREADS=5 # optional # The size of the DB connection pool, must be *at least* the same as `SIDEKIQ_THREADS`. See [notes](https://docs.joinmastodon.org/admin/scaling/#sidekiq-threads). - DB_POOL=5 # optional + # Set to `true` to skip chown of /config on init. *READ THE APPLICATION NOTES BEFORE SETTING THIS*. + - NO_CHOWN= # optional volumes: # Contains all relevant configuration files. - ${BASEDIR:-/volume1/docker}/mastodon/config:/config diff --git a/lsio/mastodon/docker-run.sh b/lsio/mastodon/docker-run.sh index 190a4b7..fcb90cb 100644 --- a/lsio/mastodon/docker-run.sh +++ b/lsio/mastodon/docker-run.sh @@ -41,6 +41,7 @@ docker run -d \ -e SIDEKIQ_DEFAULT=false `# optional` `# Set to `true` on the main container if you're running additional sidekiq instances. It will run the `default` queue.` \ -e SIDEKIQ_THREADS=5 `# optional` `# The number of threads for sidekiq to use. See [notes](https://docs.joinmastodon.org/admin/scaling/#sidekiq-threads).` \ -e DB_POOL=5 `# optional` `# The size of the DB connection pool, must be *at least* the same as `SIDEKIQ_THREADS`. See [notes](https://docs.joinmastodon.org/admin/scaling/#sidekiq-threads).` \ + -e NO_CHOWN= `# optional` `# Set to `true` to skip chown of /config on init. *READ THE APPLICATION NOTES BEFORE SETTING THIS*.` \ -p 80:80 `# Port for web frontend` \ -p 443:443 `# Port for web frontend` \ -v ${BASEDIR:-/volume1/docker}/mastodon/config:/config `# Contains all relevant configuration files.` \