Last active
August 28, 2018 04:52
-
-
Save nicokosi/524d8e8632eb38d78befe9ab6bbd6515 to your computer and use it in GitHub Desktop.
Resources for experimentations with docker/app (https://github.com/docker/app)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.2" | |
services: | |
elasticsearch: | |
# Error: driver Additional property driver is not allowed | |
# environment: | |
# - cluster.name=secu-replay | |
# - discovery.type=single-node | |
# - "ES_JAVA_OPTS=-Xms256m -Xmx256m" | |
# - network.host=0.0.0.0 | |
image: docker.elastic.co/elasticsearch/elasticsearch:6.3.2 | |
networks: | |
- elk | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
kibana: | |
depends_on: | |
- elasticsearch | |
# Error: driver Additional property driver is not allowed | |
# environment: | |
# - "LS_JAVA_OPTS=-Xms256m -Xmx256m" | |
image: docker.elastic.co/kibana/kibana:6.3.2 | |
networks: | |
- elk | |
ports: | |
- "5601:5601" | |
networks: | |
elk: | |
driver: bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This section contains your application metadata. | |
# Version of the application | |
version: 0.1.0 | |
# Name of the application | |
name: elastic-kibana | |
# A short description of the application | |
description: | |
# Namespace to use when pushing to a registry. This is typically your Hub username. | |
#namespace: myHubUsername | |
# List of application maintainers with name and email for each | |
maintainers: | |
- name: nicolas | |
email: | |
--- | |
# This section contains the Compose file that describes your application services. | |
version: "3.2" | |
services: | |
elasticsearch: | |
# Error: driver Additional property driver is not allowed | |
# environment: | |
# - cluster.name=secu-replay | |
# - discovery.type=single-node | |
# - "ES_JAVA_OPTS=-Xms256m -Xmx256m" | |
# - network.host=0.0.0.0 | |
image: docker.elastic.co/elasticsearch/elasticsearch:6.3.2 | |
networks: | |
- elk | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
kibana: | |
depends_on: | |
- elasticsearch | |
# Error: driver Additional property driver is not allowed | |
# environment: | |
# - "LS_JAVA_OPTS=-Xms256m -Xmx256m" | |
image: docker.elastic.co/kibana/kibana:6.3.2 | |
networks: | |
- elk | |
ports: | |
- "5601:5601" | |
networks: | |
elk: | |
driver: bridge | |
--- | |
# This section contains the default values for your application settings. | |
{} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment