diff --git a/docker_templates/magnum/magnum-api/Dockerfile.j2 b/docker_templates/magnum/magnum-api/Dockerfile.j2
new file mode 100644
index 0000000000000000000000000000000000000000..4da0f3a658c431a3df10d1cd5ffc3ac80811615d
--- /dev/null
+++ b/docker_templates/magnum/magnum-api/Dockerfile.j2
@@ -0,0 +1,17 @@
+FROM {{ namespace }}/{{ base_distro }}-{{ install_type  }}-magnum-base:{{ tag }}
+MAINTAINER Kolla Project (https://launchpad.net/kolla)
+
+{% if install_type == 'binary' %}
+    {% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
+
+RUN yum -y install openstack-magnum-api \
+  && yum clean all
+
+    {% endif %}
+{% endif %}
+
+COPY ./start.sh /
+COPY config-external.sh /opt/kolla/
+
+CMD ["/start.sh"]
+
diff --git a/docker_templates/magnum/magnum-api/build b/docker_templates/magnum/magnum-api/build
new file mode 120000
index 0000000000000000000000000000000000000000..43944faa006f278c2090cfeeb7397fc7cd1fc6a4
--- /dev/null
+++ b/docker_templates/magnum/magnum-api/build
@@ -0,0 +1 @@
+../../../tools/build-docker-image
\ No newline at end of file
diff --git a/docker_templates/magnum/magnum-api/config-external.sh b/docker_templates/magnum/magnum-api/config-external.sh
new file mode 120000
index 0000000000000000000000000000000000000000..0adec980b29fe0b0f193efe7f64a016da7c72dce
--- /dev/null
+++ b/docker_templates/magnum/magnum-api/config-external.sh
@@ -0,0 +1 @@
+../../../docker/common/magnum/magnum-api/config-external.sh
\ No newline at end of file
diff --git a/docker_templates/magnum/magnum-api/start.sh b/docker_templates/magnum/magnum-api/start.sh
new file mode 120000
index 0000000000000000000000000000000000000000..d6de9b70ee3821484571ced9ac7d0aa930927240
--- /dev/null
+++ b/docker_templates/magnum/magnum-api/start.sh
@@ -0,0 +1 @@
+../../../docker/common/magnum/magnum-api/start.sh
\ No newline at end of file
diff --git a/docker_templates/magnum/magnum-base/Dockerfile.j2 b/docker_templates/magnum/magnum-base/Dockerfile.j2
new file mode 100644
index 0000000000000000000000000000000000000000..c49da1cd5d1e52cbfdc69edbc71a72fe323976fb
--- /dev/null
+++ b/docker_templates/magnum/magnum-base/Dockerfile.j2
@@ -0,0 +1,32 @@
+FROM {{ namespace }}/{{ base_distro }}-{{ install_type  }}-base:{{ tag }}
+MAINTAINER Kolla Project (https://launchpad.net/kolla)
+
+{% if install_type == 'binary' %}
+    {% if base_distro in ['centos', 'oraclelinux'] %}
+
+RUN curl https://copr.fedoraproject.org/coprs/sdake/openstack-magnum/repo/epel-7/sdake-openstack-magnum-epel-7.repo -o /etc/yum.repos.d/sdake-openstack-magnum-epel-7.repo
+
+    {% elif base_distro in ['fedora'] %}
+
+RUN curl https://copr.fedoraproject.org/coprs/sdake/openstack-magnum/repo/fedora-22/sdake-openstack-magnum-fedora-22.repo -o /etc/yum.repos.d/sdake-openstack-magnum-f22.repo
+
+     {% elif base_distro in ['ubuntu', 'debian'] %}
+
+RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
+  && /bin/false
+
+    {% endif %}
+{% elif install_type == 'source' %}
+
+ADD ./magnum.tar /
+RUN ln -s /magnum-* /magnum
+
+RUN cd /magnum \
+    && useradd --user-group magnum \
+    && pip install -r requirements.txt \
+    && pip install /magnum \
+    && mkdir /etc/magnum /var/log/magnum \
+    && cp -r /magnum/etc/* /etc/magnum/ \
+    && rm -rf /root/.cache
+
+{% endif %}
diff --git a/docker_templates/magnum/magnum-base/build b/docker_templates/magnum/magnum-base/build
new file mode 120000
index 0000000000000000000000000000000000000000..43944faa006f278c2090cfeeb7397fc7cd1fc6a4
--- /dev/null
+++ b/docker_templates/magnum/magnum-base/build
@@ -0,0 +1 @@
+../../../tools/build-docker-image
\ No newline at end of file
diff --git a/docker_templates/magnum/magnum-conductor/Dockerfile.j2 b/docker_templates/magnum/magnum-conductor/Dockerfile.j2
new file mode 100644
index 0000000000000000000000000000000000000000..2f166035999920ed15f938f1f33a4f5929a5cd9b
--- /dev/null
+++ b/docker_templates/magnum/magnum-conductor/Dockerfile.j2
@@ -0,0 +1,21 @@
+FROM {{ namespace }}/{{ base_distro }}-{{ install_type  }}-magnum-base:{{ tag }}
+MAINTAINER Kolla Project (https://launchpad.net/kolla)
+
+{% if install_type == 'binary' %}
+    {% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
+
+RUN yum -y install openstack-magnum-conductor \
+    tar \
+  && yum clean all
+
+# Install kubectl binary (ugh)
+RUN cd /tmp && curl -L https://github.com/GoogleCloudPlatform/kubernetes/releases/download/v0.15.0/kubernetes.tar.gz -o /tmp/kubernetes.tar.gz && /usr/bin/tar -xzvf /tmp/kubernetes.tar.gz && cp -a /tmp/kubernetes/platforms/linux/amd64/kubectl /usr/bin/kubectl && rm -rf /tmp/kubernetes
+
+    {% endif %}
+{% endif %}
+
+COPY ./start.sh /
+COPY config-external.sh /opt/kolla/
+
+CMD ["/start.sh"]
+
diff --git a/docker_templates/magnum/magnum-conductor/build b/docker_templates/magnum/magnum-conductor/build
new file mode 120000
index 0000000000000000000000000000000000000000..43944faa006f278c2090cfeeb7397fc7cd1fc6a4
--- /dev/null
+++ b/docker_templates/magnum/magnum-conductor/build
@@ -0,0 +1 @@
+../../../tools/build-docker-image
\ No newline at end of file
diff --git a/docker_templates/magnum/magnum-conductor/config-external.sh b/docker_templates/magnum/magnum-conductor/config-external.sh
new file mode 120000
index 0000000000000000000000000000000000000000..694c7b5d73550879a67a02a7fe0fef0e875ae31a
--- /dev/null
+++ b/docker_templates/magnum/magnum-conductor/config-external.sh
@@ -0,0 +1 @@
+../../../docker/common/magnum/magnum-conductor/config-external.sh
\ No newline at end of file
diff --git a/docker_templates/magnum/magnum-conductor/start.sh b/docker_templates/magnum/magnum-conductor/start.sh
new file mode 120000
index 0000000000000000000000000000000000000000..42ca31c466bbbccd400327dbb735339180076dc1
--- /dev/null
+++ b/docker_templates/magnum/magnum-conductor/start.sh
@@ -0,0 +1 @@
+../../../docker/common/magnum/magnum-conductor/start.sh
\ No newline at end of file