turbaszek commented on a change in pull request #50:
URL: https://github.com/apache/kibble/pull/50#discussion_r503430103
##########
File path: docker-compose-dev.yaml
##########
@@ -0,0 +1,62 @@
+version: '3'
+
+services:
+ # Apache Kibble API server
+ kibble:
+ image: &img kibble
+ build:
+ context: .
+ dockerfile: Dockerfile.dev
+ command: bash -c "cd api && gunicorn --reload -w 1 -b 0.0.0.0:8001
handler:application"
+ expose:
+ - 8001
+ ports:
+ - 8001:8001
+ volumes:
+ - ./api/:/kibble/api/
+ - ./setup/:/kibble/setup/
+ - ./ui/:/kibble/ui/
+ depends_on:
+ - elasticsearch
+
+ # Apache Kibble web ui server
+ ui:
+ image: nginx:latest
Review comment:
I decided to use nginx as I'm more familiar with it than with httpd
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]