You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We use different docker-compose files for stage/production than the ones for development. Because they follow a particular naming convention, invenio-cli commands that implicitly depend on the presence of docker-compose.full.yml fail e.g.,
invenio-cli destroy
Destroying containers, volumes, virtual environment...
Destroying virtual environment
Removing virtualenv (/home/guillaume/dev/work/my-site/.venv)...
Destroying containers...
Failed to destroy instance. You can destroy only services using the services command: invenio-cli services destroy
Errors: .FileNotFoundError: [Errno 2] No such file or directory: './docker-compose.full.yml'
Describe the solution you'd like
I would like to be able to pass a docker-compose file to use on the CLI and/or set it in my local .invenio.private file so that commands work even if I use a diferent file name.
Is your feature request related to a problem? Please describe.
We use different docker-compose files for stage/production than the ones for development. Because they follow a particular naming convention, invenio-cli commands that implicitly depend on the presence of
docker-compose.full.yml
fail e.g.,invenio-cli destroy Destroying containers, volumes, virtual environment... Destroying virtual environment Removing virtualenv (/home/guillaume/dev/work/my-site/.venv)... Destroying containers... Failed to destroy instance. You can destroy only services using the services command: invenio-cli services destroy Errors: .FileNotFoundError: [Errno 2] No such file or directory: './docker-compose.full.yml'
Describe the solution you'd like
I would like to be able to pass a docker-compose file to use on the CLI and/or set it in my local
.invenio.private
file so that commands work even if I use a diferent file name.Mimic docker-compose -f option:
or in config file:
The text was updated successfully, but these errors were encountered: