From: Lorin Hochstein Date: Mon, 16 Jan 2017 01:45:59 +0000 (-0800) Subject: WIP: comment out all non-mezz images X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=308b4e2d305eb9ca492bee78480f42d48e36c256;p=ansiblebook.git WIP: comment out all non-mezz images --- diff --git a/ch13/ansible/container.yml b/ch13/ansible/container.yml index 7399078..0275ccf 100644 --- a/ch13/ansible/container.yml +++ b/ch13/ansible/container.yml @@ -28,27 +28,27 @@ services: - "80" ports: - "8000:80" - dev_overrides: - depends_on: - - postgres - memcached: - image: ubuntu:xenial - expose: - - "11211" - ports: - - "11211:11211" - command: [-m, "128"] - entrypoint: memcached - user: daemon - postgres: - image: postgres:9.6 - expose: - - "{{ database_port }}" - ports: - - "{{ database_port }}:{{ database_port }}" - environment: - POSTGRES_USER: "{{ database_user }}" - POSTGRES_PASSWORD: "{{ database_password }}" + # dev_overrides: + # depends_on: + # - postgres + # memcached: + # image: ubuntu:xenial + # expose: + # - "11211" + # ports: + # - "11211:11211" + # command: [-m, "128"] + # entrypoint: memcached + # user: daemon + # postgres: + # image: postgres:9.6 + # expose: + # - "{{ database_port }}" + # ports: + # - "{{ database_port }}:{{ database_port }}" + # environment: + # POSTGRES_USER: "{{ database_user }}" + # POSTGRES_PASSWORD: "{{ database_password }}" # Add your containers here, specifying the base image you want to build from # For example: