Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: fix docker-compose.full #1186

Merged
merged 2 commits into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
Changes
=======

Version 1.0.0rc4 (released 2023-07-04)

- Fix docker-compose file

Version 1.0.0rc3 (released 2023-03-10)

- Remove ES v6 mappings
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
- static_data:/opt/invenio_app_ils/var/instance
links:
- cache
- es
- search
- mq
- db
# Worker
Expand All @@ -45,7 +45,7 @@ services:
image: invenio_app_ils-worker
links:
- cache
- es
- search
- mq
- db
# Monitoring
Expand All @@ -68,9 +68,9 @@ services:
extends:
file: docker-services.yml
service: mq
es:
search:
extends:
file: docker-services.yml
service: es
service: search
volumes:
static_data:
2 changes: 1 addition & 1 deletion invenio_app_ils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

"""invenio-app-ils."""

__version__ = "1.0.0rc3"
__version__ = "1.0.0rc4"

__all__ = ("__version__",)