docker compose
authorLorin Hochstein <lhochstein@netflix.com>
Sun, 5 Feb 2017 03:44:21 +0000 (19:44 -0800)
committerLorin Hochstein <lhochstein@netflix.com>
Sun, 5 Feb 2017 03:44:21 +0000 (19:44 -0800)
ch13/docker-compose.yml [new file with mode: 0644]

diff --git a/ch13/docker-compose.yml b/ch13/docker-compose.yml
new file mode 100644 (file)
index 0000000..1fe5512
--- /dev/null
@@ -0,0 +1,14 @@
+version: '2'
+services:
+  nginx:
+    image: nginx-ghost
+    ports:
+      - "8000:80"
+      - "8443:443"
+    volumes:
+      - ${PWD}/certs:/certs
+    links:
+      - ghost
+  ghost:
+    image: ghost
+