Run sidekiq and streaming from the same mastodon version

master
Kuba Orlik 3 weeks ago
parent fa3479fee5
commit ad40d86b69

@ -24,3 +24,4 @@ mastodon_docker_smtp:
mastodon_docker_web_port: 3008
mastodon_docker_streaming_port: 3009
mastodon_docker_media_cleanup_days: 3
mastodon_version: 4.7

@ -1,4 +1,4 @@
FROM ghcr.io/mastodon/mastodon:v4.7
FROM ghcr.io/mastodon/mastodon:v{{ mastodon_version }}
USER root

@ -84,7 +84,7 @@ services:
- "{{ mastodon_docker_cache_storage }}:/opt/mastodon/public/system/cache"
streaming:
image: ghcr.io/mastodon/mastodon-streaming:v4.5.9
image: ghcr.io/mastodon/mastodon-streaming:v{{ mastodon_version }}
restart: always
env_file: env
command: node ./streaming/index.js
@ -101,7 +101,7 @@ services:
- redis
sidekiq:
image: ghcr.io/mastodon/mastodon:v4.5.9
image: ghcr.io/mastodon/mastodon:v{{ mastodon_version }}
restart: always
env_file: env
command: bundle exec sidekiq

Loading…
Cancel
Save