Skip to content

Commit

Permalink
Update Docker development setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cc-a committed Mar 13, 2024
1 parent b7212ae commit 962b3cf
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions docker-compose.app-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ services:
ports:
- 127.0.0.1:5000:5000
command:
- sh
- -c
- |
invenio run -h 0.0.0.0 --key app_data/certificates/dev.key --cert app_data/certificates/dev.cert
celery -A invenio_app.celery worker --beat --loglevel=INFO &
invenio run --debug -h 0.0.0.0 --key app_data/certificates/dev.key --cert app_data/certificates/dev.cert
volumes:
- static_data:/opt/invenio/var/instance/static
- uploaded_data:/opt/invenio/var/instance/data
- archived_data:/opt/invenio/var/instance/archive
- ./:/opt/invenio/src
volumes:
static_data:
uploaded_data:
archived_data:

0 comments on commit 962b3cf

Please sign in to comment.