Skip to content
Open
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
1 change: 1 addition & 0 deletions .docker-compose.mfr.env
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ UNOSERVER_PORT=2003

# Indicates use of local docker development setup
EXTENSION_CONFIG_LOCAL_DEVELOPMENT=1
RABBITMQ_PORT_5672_TCP_ADDR=192.168.168.167

#PYTHONUNBUFFERED=0 # This when set to 0 will allow print statements to be visible in the Docker logs
6 changes: 2 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ services:

mfr:
image: quay.io/centerforopenscience/mfr:develop
command: invoke server
command: python -m invoke server
restart: unless-stopped
ports:
- 7778:7778
Expand All @@ -168,10 +168,8 @@ services:

mfr_worker:
image: quay.io/centerforopenscience/mfr:develop
command: invoke celery --concurrency=1
command: python -m invoke celery --concurrency=1
restart: unless-stopped
ports:
- 7778:7778
env_file:
- .docker-compose.mfr.env
extra_hosts:
Expand Down
Loading