Added
- Resource limits to docke-compose.yml file to prevent server overload. Feel free to adjust the limits to your needs.
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
...
depends_on:
- dawarich_db
- dawarich_redis
+ deploy:
+ resources:
+ limits:
+ cpus: '0.50' # Limit CPU usage to 50% of one core
+ memory: '2G' # Limit memory usage to 2GB
dawarich_sidekiq:
image: freikin/dawarich:latest
container_name: dawarich_sidekiq
...
depends_on:
- dawarich_db
- dawarich_redis
- dawarich_app
+ deploy:
+ resources:
+ limits:
+ cpus: '0.50' # Limit CPU usage to 50% of one core
+ memory: '2G' # Limit memory usage to 2GB
Fixed
- Importing geodata from Immich will now not throw an error in the end of the process
Changed
- A notification about an existing import with the same name will now show the import name
- Export file now also will contain
raw_dat
field for each point. This field contains the original data that was imported to the application.
💙 This release is supported by James Manolios on Patreon 💙
What's Changed
- Bump data_migrate from 9.4.0 to 9.4.2 by @dependabot in #206
- Bump rswag-ui from 2.13.0 to 2.14.0 by @dependabot in #202
- Bump rswag-specs from 2.13.0 to 2.14.0 by @dependabot in #203
- Bump chartkick from 5.0.7 to 5.1.0 by @dependabot in #204
- Bump pundit from 2.3.2 to 2.4.0 by @dependabot in #205
- Add resource limits to docker-compose.yml file and fix Immich import bug by @Freika in #208
Full Changelog: 0.12.2...0.12.3