From 4fa72db69ae47f929f65fcf0e35a400499e78ef9 Mon Sep 17 00:00:00 2001 From: Jack Humphrey Date: Tue, 28 Feb 2017 17:31:25 -0600 Subject: [PATCH] Add Docker stack file that can work with Docker Cloud --- docker-cloud.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docker-cloud.yml diff --git a/docker-cloud.yml b/docker-cloud.yml new file mode 100644 index 0000000..10a64da --- /dev/null +++ b/docker-cloud.yml @@ -0,0 +1,26 @@ +hadoop: + image: indeedoss/imhotep-cdh5-hdfs:latest + volumes: + - /var/lib/hadoop-hdfs + expose: + - "8020" + roles: + - global +zookeeper: + image: indeedoss/imhotep-zookeeper:latest + expose: + - "2181" + roles: + - global +daemon: + image: indeedoss/imhotep-daemon:latest + expose: + - "12345" + roles: + - global +frontend: + image: indeedoss/imhotep-frontend:latest + ports: + - "80" + roles: + - global