Last active
February 11, 2022 06:52
-
-
Save dtmkeng/b21ce445c9aa1d927b3d7784a795bcf6 to your computer and use it in GitHub Desktop.
Revisions
-
Phumai Chanphunga revised this gist
Jul 30, 2021 . 1 changed file with 1 addition and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -20,8 +20,4 @@ services: depends_on: - es01 links: - es01 -
Phumai Chanphunga renamed this gist
Jul 30, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Phumai Chanphunga created this gist
Jul 30, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ version: '2.2' services: es01: image: docker.elastic.co/elasticsearch/elasticsearch:7.12.1 container_name: es01 environment: - discovery.type=single-node ports: - 9200:9200 redis: image: "redis:alpine" ports: - 6379:6379 kibana: image: docker.elastic.co/kibana/kibana:7.12.1 environment: - ELASTICSEARCH_HOSTS=http://es01:9200 ports: - 5601:5601 depends_on: - es01 links: - es01 networks: default: external: name: dcloud