Last active
April 1, 2021 08:13
-
-
Save mlicheng/7aad29908a383a0e2db862ed16aabda5 to your computer and use it in GitHub Desktop.
docker env for kibana
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
// delete images which tag is none | |
docker rmi $(docker images | grep "none" | awk '{print $3}') | |
// docker env for kibana config | |
"Env": [ | |
"PATH=/usr/share/kibana/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", | |
"ELASTIC_CONTAINER=false", | |
"ELASTICSEARCH_HOSTS=http://127.0.0.1:8812" | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment