mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
Update CHANGELOG.md and docker-compose.yml for the new watcher directory
This commit is contained in:
parent
6febd40b4f
commit
118a4bcb87
2 changed files with 28 additions and 0 deletions
26
CHANGELOG.md
26
CHANGELOG.md
|
|
@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
# 0.15.3 - 2024-10-05
|
||||
|
||||
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.
|
||||
|
||||
```diff
|
||||
...
|
||||
|
||||
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/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/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
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ services:
|
|||
volumes:
|
||||
- gem_cache:/usr/local/bundle/gems
|
||||
- public:/var/app/public
|
||||
- watched:/var/app/tmp/watched
|
||||
networks:
|
||||
- dawarich
|
||||
ports:
|
||||
|
|
@ -68,6 +69,7 @@ services:
|
|||
volumes:
|
||||
- gem_cache:/usr/local/bundle/gems
|
||||
- public:/var/app/public
|
||||
- watched:/var/app/tmp/watched
|
||||
networks:
|
||||
- dawarich
|
||||
stdin_open: true
|
||||
|
|
|
|||
Loading…
Reference in a new issue