From a742ef7291df8f6f66e9cc2558cb3f807e6eccae Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Sat, 14 Jan 2017 20:13:55 -0800 Subject: [PATCH] WIP: start testing with memcached --- ch13/ansible/container.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) 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: # -- 2.44.0