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
| version: "3.7" | |
| services: | |
| elasticsearch: | |
| image: docker.elastic.co/elasticsearch/elasticsearch:7.10.1 | |
| ports: | |
| - 9200 | |
| - 9300 | |
| environment: | |
| - discovery.type=single-node |
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
| #!/bin/bash | |
| # | |
| # pcap2wav | |
| # Original Author: Michael Collins <[email protected]> | |
| #Standard disclaimer: batteries not included, your mileage may vary... | |
| # Updated by Avi Marcus <[email protected]> | |
| # | |
| # Accepts arg of pcap file w/only 2 RTP streams | |
| # Creates a .<codec> file and a .wav file | |
| # For codecs other than PCMA and PCMU the script calls fs_cli and does a little recording to create the wav file(s) |
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
| FROM ubuntu:latest | |
| LABEL maintainer="rhysha <[email protected]>" | |
| ENV DEV_USER=user | |
| ENV UID=1000 | |
| ENV GID=1000 | |
| ENV DEF_PASSWD=password | |
| ENV TZ=Asia/Shanghai | |
| ENV LANG=en_US.UTF-8 |
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
| # Maintainer: Jakub Hajek, [email protected] | |
| # | |
| # docker stack deploy -c stack-elastic.yml elastic | |
| # | |
| # The stack creates Elasticsearch cluster consiting of | |
| # - 3 dedicated master nodes in order to keep quorum | |
| # - 4 dedicated data nodes to manage CRUD, | |
| # | |
| # Docker compose file to easily deploy Elasticsearch cluster 7.x on Docker Swarm cluster. |