0.15.3
To expose the watcher functionality to the user, a new directory /tmp/imports/watched/
was created. Add new volume to the docker-compose.yml
file to expose this directory to the host machine.
...
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
volumes:
- gem_cache:/usr/local/bundle/gems
- public:/var/app/public
+ - watched:/var/app/tmp/imports/watched
...
dawarich_sidekiq:
image: freikin/dawarich:latest
container_name: dawarich_sidekiq
volumes:
- gem_cache:/usr/local/bundle/gems
- public:/var/app/public
+ - watched:/var/app/tmp/imports/watched
...
volumes:
db_data:
gem_cache:
shared_data:
public:
+ watched:
Changed
- Watcher now looks into
/tmp/imports/watched/USER@EMAIL.TLD
directory instead of/tmp/imports/watched/
to allow using arbitrary file names for imports
💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙
What's Changed
Full Changelog: 0.15.2...0.15.3