Skip to content

0.12.3

Compare
Choose a tag to compare
@Freika Freika released this 02 Sep 18:20
· 319 commits to master since this release
71434ae

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

Full Changelog: 0.12.2...0.12.3