This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sidekiq: | |
image: tootsuite/mastodon:latest | |
restart: always | |
env_file: /opt/mastodon/.env.production | |
environment: | |
- DB_POOL=16 | |
command: bundle exec sidekiq -c 16 -q pull | |
depends_on: | |
- db | |
- redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install meson dtc swig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example how you can "patch" Matodon running in docker swarm by exploiting "config mounts" | |
# to avoid mounting files from local system | |
services: | |
web: | |
# original configuration | |
# ... | |
configs: | |
- source: mastodon-remove-char-limit | |
target: /mastodon/config/initializers/4_char_limit.rb |
OlderNewer