Created
April 24, 2019 16:15
-
-
Save vsmelov/2434cd52fcd9d01f3e28dc7e6276cfb6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
apm-server: | |
image: docker.elastic.co/apm/apm-server:6.7.1 | |
# image: docker.elastic.co/apm/apm-server:6.5.3 | |
command: -strict.perms=false | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- ./apm/apm-server.yml:/usr/share/apm-server/apm-server.yml | |
depends_on: | |
- es-tunnel | |
logging: | |
options: | |
max-size: "200m" | |
max-file: "4" | |
restart: always | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:6.7.1 | |
depends_on: | |
- apm-server | |
kibana: | |
image: docker.elastic.co/kibana/kibana:6.7.1 | |
ports: | |
- "127.0.0.1:5601:5601" | |
depends_on: | |
- elasticsearch | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment