-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change docker file to support elastic_search #8
base: master
Are you sure you want to change the base?
Changes from 1 commit
7a67231
0f6e320
f6f418a
4aebc06
9dd18e3
9006252
3ea3f1f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -180,4 +180,38 @@ services: | |
- "traefik.port=80" | ||
- "traefik.frontend.rule=PathPrefix: /" | ||
- "traefik.website.frontend.whiteList.sourceRange=${TRAEFIK_IPFILTER:-172.16.0.0/12}" | ||
container_name: "frontend" | ||
container_name: "frontend" | ||
|
||
elasticsearch: | ||
container_name: elasticsearch | ||
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.2 | ||
ports: | ||
- 9200:9200 | ||
volumes: | ||
- elasticsearch-data:/usr/share/elasticsearch/data | ||
environment: | ||
- xpack.monitoring.enabled=true | ||
- xpack.watcher.enabled=false | ||
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this enough memory? How big will the index be, I think we should set Xmx to 2GB |
||
- discovery.type=single-node | ||
networks: | ||
- elastic | ||
|
||
kibana: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is kibana needed? is there a way to prepopulate it with a username/password. |
||
container_name: kibana | ||
image: docker.elastic.co/kibana/kibana:7.6.2 | ||
ports: | ||
- 5601:5601 | ||
depends_on: | ||
- elasticsearch | ||
environment: | ||
- ELASTICSEARCH_URL=http://localhost:9200 | ||
networks: | ||
- elastic | ||
|
||
networks: | ||
elastic: | ||
driver: bridge | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any reason for bridge network, also if we want the other containers to use this we should use the same network. |
||
|
||
volumes: | ||
elasticsearch-data: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in general we don't want to expose ports, for local development this can be done using docker-compose.override.yaml.