From: Lorin Hochstein Date: Sun, 5 Feb 2017 03:44:21 +0000 (-0800) Subject: docker compose X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=e406c64720fccf64393df31c2af3fdf3b3aba4ac;p=ansiblebook.git docker compose --- diff --git a/ch13/docker-compose.yml b/ch13/docker-compose.yml new file mode 100644 index 0000000..1fe5512 --- /dev/null +++ b/ch13/docker-compose.yml @@ -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 +