mariol100 / docker-compose-files

Some typical docker compose templates.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Compose Files

Some typical docker compose examples.

Install Docker and Docker Compose

Take ubuntu for example

$ curl -sSL https://get.docker.com/ | sh
$ sudo pip install docker-compose

Docker-compose Usage

See Docker Compose Documentation.

Examples files

Using consul to make a service-discoverable architecture.

Elk cluster, with netflow support.

docker-compose scale es=3

A simple haproxy and web applications cluster.

Quickly bootup a hyperledger cluster with several validator nodes, without vagrant or any manual configuration. By default, the cluster enables PBFT as the consensus.

See hyperledger for more details.

Start 3 mongo instance to make a replica set.

Start mongo (as cluster) and elasticsearch, use a mongo-connector to sync the data from mongo to elasticsearch.

Start 1 mongo instance and a mongo-express web tool to watch it.

The mongo instance will store data into local /opt/data/mongo_home.

The web UI will listen on local 8081 port.

Use nginx as a proxy with authentication for backend application.

Demo the packetbeat, elasticsearch and kibana.

Some kibana dashboard config files are included.

To import them, after all containers startup, go inside the kibana container, and run

$ cd /kibana/beats-dashboards-1.0.1 && ./load.sh http://elasticsearch:9200

docker registry mirror, with redis as the backend cache.

Spark cluster with master and worker nodes.

docker-compose scale worker=2

Try submitting a test pi application using the spark-submit command.

/urs/local/spark/bin/spark-submit --master spark://master:7077 --class org.apache.spark.examples.SparkPi /usr/local/spark/lib/spark-examples-1.4.0-hadoop2.6.0.jar 1000

About

Some typical docker compose templates.


Languages

Language:Shell 53.4%Language:Python 43.1%Language:Makefile 3.5%