From: Lorin Hochstein Date: Sun, 15 Jan 2017 04:13:55 +0000 (-0800) Subject: WIP: start testing with memcached X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=a742ef7291df8f6f66e9cc2558cb3f807e6eccae;p=ansiblebook.git WIP: start testing with memcached --- diff --git a/ch13/ansible/container.yml b/ch13/ansible/container.yml index 28e9a02..6cabc39 100644 --- a/ch13/ansible/container.yml +++ b/ch13/ansible/container.yml @@ -1,18 +1,21 @@ version: "2" services: - nginx: - image: nginx:1.11 - mezzanine: - image: ubuntu:xenial + # nginx: + # image: nginx:1.11 + # mezzanine: + # image: ubuntu:xenial memcached: image: ubuntu:xenial expose: - "11211" - command: [-m, 128] + ports: + - "11211:11211" + command: [-m, "128"] entrypoint: memcached user: daemon - postgres: - image: postgres:9.6 + + # postgres: + # image: postgres:9.6 # Add your containers here, specifying the base image you want to build from # For example: #