Skip to content
Open
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
21 changes: 21 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,27 @@ services:
- internal
- proxy-net

microservice_dbdocker:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
microservice_dbdocker:
microservice_dbdocker:

build: ./microservice_dbdocker
depends_on:
- mongodb
#restart: always
command: gunicorn -w 1 --timeout 120 -b :27777 wsgi:microservice
ports:
- "${EXTERNAL_IP:-127.0.0.1}:27777:27777"
networks:
- default
mongodb:
image: mongo:4.2
#restart: always
command: mongod --dbpath /data/db
volumes:
- dbdocker:/data/db
#ports:
# - "${EXTERNAL_IP:-127.0.0.1}:27018:27017"
networks:
- default

volumes:
data:
name: jupyterhub-data
Expand Down