0.27.2
0.27.2 - 2025-06-02
You can now safely remove Redis and Sidekiq from your docker-compose.yml
file, both containers, related volumes, environment variables and container dependencies.
services:
- dawarich_redis:
- image: redis:7.0-alpine
- container_name: dawarich_redis
- command: redis-server
- networks:
- - dawarich
- volumes:
- - dawarich_shared:/data
- restart: always
- healthcheck:
- test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
- interval: 10s
- retries: 5
- start_period: 30s
- timeout: 10s
...
dawarich_app:
image: freikin/dawarich:latest
environment:
RAILS_ENV: development
- REDIS_URL: redis://dawarich_redis:6379/0
...
depends_on:
dawarich_db:
condition: service_healthy
restart: true
- dawarich_redis:
- condition: service_healthy
- restart: true
...
- dawarich_sidekiq:
- image: freikin/dawarich:latest
- container_name: dawarich_sidekiq
- volumes:
- - dawarich_public:/var/app/public
- - dawarich_watched:/var/app/tmp/imports/watched
- - dawarich_storage:/var/app/storage
- networks:
- - dawarich
- stdin_open: true
- tty: true
- entrypoint: sidekiq-entrypoint.sh
- command: ['sidekiq']
- restart: on-failure
- environment:
- RAILS_ENV: development
- REDIS_URL: redis://dawarich_redis:6379/0
- DATABASE_HOST: dawarich_db
- DATABASE_USERNAME: postgres
- DATABASE_PASSWORD: password
- DATABASE_NAME: dawarich_development
- APPLICATION_HOSTS: localhost
- BACKGROUND_PROCESSING_CONCURRENCY: 10
- APPLICATION_PROTOCOL: http
- PROMETHEUS_EXPORTER_ENABLED: false
- PROMETHEUS_EXPORTER_HOST: dawarich_app
- PROMETHEUS_EXPORTER_PORT: 9394
- SELF_HOSTED: "true"
- STORE_GEODATA: "true"
- logging:
- driver: "json-file"
- options:
- max-size: "100m"
- max-file: "5"
- healthcheck:
- test: [ "CMD-SHELL", "bundle exec sidekiqmon processes | grep $${HOSTNAME}" ]
- interval: 10s
- retries: 30
- start_period: 30s
- timeout: 10s
- depends_on:
- dawarich_db:
- condition: service_healthy
- restart: true
- dawarich_redis:
- condition: service_healthy
- restart: true
- dawarich_app:
- condition: service_healthy
- restart: true
Removed
- Redis and Sidekiq.
💙 This release is supported by Steven B., James Manolios, chenrik, aldumil, derpderpington, Chippie, dint, jhalpern, Lex Fradski, Schlufo, cyberswan.at, craftyklaus, JMyrng, Andre, hogenf, naraxius, Lemur, Embrace, martin4861, Alex, evetters, GregF, Jon Coffee, Lukas, Robbie G, Kilian, Hans G, Chris, tabaha, Andre, Michael C, Chris, elyob, gesus, Jonah B., Dante, daallex, Tanner A., Matthias B., Milien M., Mathias, Travis S., Stefan, Michael J., Matthew F. and Johnathan D on Patreon and KoFi 💙
What's Changed
- Remove Redis and Sidekiq from Dawarich by @Freika in #1312
- Bump dotenv-rails from 3.1.7 to 3.1.8 by @dependabot in #1308
- Bump data_migrate from 11.2.0 to 11.3.0 by @dependabot in #1305
- Bump oj from 3.16.10 to 3.16.11 by @dependabot in #1304
- 0.27.2 by @Freika in #1313
Full Changelog: 0.27.1...0.27.2