├── .gitignore ├── README.md ├── base ├── README.md ├── dockerfile ├── pip.conf ├── requirements.txt └── sources.list ├── data └── README.md ├── flume ├── README.md ├── conf │ ├── flume-avro.conf │ ├── flume-exec.conf │ └── flume-netcat.conf └── dockerfile ├── hadoop ├── README.md ├── conf │ ├── core-site.xml │ ├── hdfs-site.xml │ ├── mapred-site.xml │ ├── masters │ ├── slaves │ └── yarn-site.xml ├── docker-compose.yml ├── dockerfile └── hadoop-entrypoint.sh ├── hbase ├── README.md ├── conf │ ├── hbase-site.xml │ └── regionservers ├── docker-compose.yml └── dockerfile ├── hive ├── README.md ├── conf │ └── hive-site.xml └── dockerfile ├── kafka ├── README.md ├── conf │ └── server.propertie └── dockerfile ├── mysql ├── README.md └── dockerfile ├── redis ├── README.md └── redis.dockerfile ├── spark ├── README.md ├── compose.sh ├── conf │ ├── slaves │ └── spark-env.sh ├── docker-compose.yml └── dockerfile ├── storm ├── README.md ├── conf │ └── storm.yaml └── dockerfile └── zookeeper ├── README.md ├── conf └── zoo.cfg ├── docker-compose.yml └── dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | **/.DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/README.md -------------------------------------------------------------------------------- /base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/base/README.md -------------------------------------------------------------------------------- /base/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/base/dockerfile -------------------------------------------------------------------------------- /base/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/base/pip.conf -------------------------------------------------------------------------------- /base/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | ipthon 3 | scipy 4 | pandas 5 | -------------------------------------------------------------------------------- /base/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/base/sources.list -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | # DATA 2 | -------------------------------------------------------------------------------- /flume/README.md: -------------------------------------------------------------------------------- 1 | # flume 2 | -------------------------------------------------------------------------------- /flume/conf/flume-avro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/flume/conf/flume-avro.conf -------------------------------------------------------------------------------- /flume/conf/flume-exec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/flume/conf/flume-exec.conf -------------------------------------------------------------------------------- /flume/conf/flume-netcat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/flume/conf/flume-netcat.conf -------------------------------------------------------------------------------- /flume/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/flume/dockerfile -------------------------------------------------------------------------------- /hadoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/README.md -------------------------------------------------------------------------------- /hadoop/conf/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/conf/core-site.xml -------------------------------------------------------------------------------- /hadoop/conf/hdfs-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/conf/hdfs-site.xml -------------------------------------------------------------------------------- /hadoop/conf/mapred-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/conf/mapred-site.xml -------------------------------------------------------------------------------- /hadoop/conf/masters: -------------------------------------------------------------------------------- 1 | master -------------------------------------------------------------------------------- /hadoop/conf/slaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/conf/slaves -------------------------------------------------------------------------------- /hadoop/conf/yarn-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/conf/yarn-site.xml -------------------------------------------------------------------------------- /hadoop/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/docker-compose.yml -------------------------------------------------------------------------------- /hadoop/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/dockerfile -------------------------------------------------------------------------------- /hadoop/hadoop-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hadoop/hadoop-entrypoint.sh -------------------------------------------------------------------------------- /hbase/README.md: -------------------------------------------------------------------------------- 1 | # hbase 2 | -------------------------------------------------------------------------------- /hbase/conf/hbase-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hbase/conf/hbase-site.xml -------------------------------------------------------------------------------- /hbase/conf/regionservers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hbase/conf/regionservers -------------------------------------------------------------------------------- /hbase/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hbase/docker-compose.yml -------------------------------------------------------------------------------- /hbase/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hbase/dockerfile -------------------------------------------------------------------------------- /hive/README.md: -------------------------------------------------------------------------------- 1 | # hive 2 | -------------------------------------------------------------------------------- /hive/conf/hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hive/conf/hive-site.xml -------------------------------------------------------------------------------- /hive/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/hive/dockerfile -------------------------------------------------------------------------------- /kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/kafka/README.md -------------------------------------------------------------------------------- /kafka/conf/server.propertie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/kafka/conf/server.propertie -------------------------------------------------------------------------------- /kafka/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/kafka/dockerfile -------------------------------------------------------------------------------- /mysql/README.md: -------------------------------------------------------------------------------- 1 | # mysql -------------------------------------------------------------------------------- /mysql/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/mysql/dockerfile -------------------------------------------------------------------------------- /redis/README.md: -------------------------------------------------------------------------------- 1 | # redis 2 | -------------------------------------------------------------------------------- /redis/redis.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/redis/redis.dockerfile -------------------------------------------------------------------------------- /spark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/spark/README.md -------------------------------------------------------------------------------- /spark/compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/spark/compose.sh -------------------------------------------------------------------------------- /spark/conf/slaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/spark/conf/slaves -------------------------------------------------------------------------------- /spark/conf/spark-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/spark/conf/spark-env.sh -------------------------------------------------------------------------------- /spark/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/spark/docker-compose.yml -------------------------------------------------------------------------------- /spark/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/spark/dockerfile -------------------------------------------------------------------------------- /storm/README.md: -------------------------------------------------------------------------------- 1 | # storm -------------------------------------------------------------------------------- /storm/conf/storm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/storm/conf/storm.yaml -------------------------------------------------------------------------------- /storm/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/storm/dockerfile -------------------------------------------------------------------------------- /zookeeper/README.md: -------------------------------------------------------------------------------- 1 | # zookeeper 2 | -------------------------------------------------------------------------------- /zookeeper/conf/zoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/zookeeper/conf/zoo.cfg -------------------------------------------------------------------------------- /zookeeper/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/zookeeper/docker-compose.yml -------------------------------------------------------------------------------- /zookeeper/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangYang-wy/YangDocker/HEAD/zookeeper/dockerfile --------------------------------------------------------------------------------