Skip to content

Instantly share code, notes, and snippets.

@dtmkeng
Last active February 11, 2022 06:52
Show Gist options
  • Select an option

  • Save dtmkeng/b21ce445c9aa1d927b3d7784a795bcf6 to your computer and use it in GitHub Desktop.

Select an option

Save dtmkeng/b21ce445c9aa1d927b3d7784a795bcf6 to your computer and use it in GitHub Desktop.

Revisions

  1. Phumai Chanphunga revised this gist Jul 30, 2021. 1 changed file with 1 addition and 5 deletions.
    6 changes: 1 addition & 5 deletions elastic-kibana.yaml
    Original file line number Diff line number Diff line change
    @@ -20,8 +20,4 @@ services:
    depends_on:
    - es01
    links:
    - es01
    networks:
    default:
    external:
    name: dcloud
    - es01
  2. Phumai Chanphunga renamed this gist Jul 30, 2021. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. Phumai Chanphunga created this gist Jul 30, 2021.
    27 changes: 27 additions & 0 deletions gistfile1.txt
    Original 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