Upgrade mastodon to 4.0.2

This commit is contained in:
Víðir Valberg Guðmundsson 2022-11-17 20:40:59 +01:00
parent bcbe0a8285
commit 4bc69b49bb
1 changed files with 5 additions and 3 deletions

View File

@ -52,7 +52,7 @@
- "{{ mastodon.volume_folder }}/redis_data:/data"
web:
image: tootsuite/mastodon:v3.5.3
image: "tootsuite/mastodon:{{ mastodon_version }}"
restart: always
env_file: "{{ mastodon.volume_folder }}/env_file"
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
@ -74,7 +74,7 @@
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
streaming:
image: tootsuite/mastodon:v3.5.3
image: "tootsuite/mastodon:{{ mastodon_version }}"
restart: always
env_file: "{{ mastodon.volume_folder }}/env_file"
command: node ./streaming
@ -91,7 +91,7 @@
- redis
sidekiq:
image: tootsuite/mastodon:v3.5.3
image: "tootsuite/mastodon:{{ mastodon_version }}"
restart: always
env_file: "{{ mastodon.volume_folder }}/env_file"
command: bundle exec sidekiq
@ -114,3 +114,5 @@
external: true
internal_network:
internal: true
vars:
mastodon_version: "v4.0.2"