Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 1.46 KB

README.md

File metadata and controls

33 lines (30 loc) · 1.46 KB

opsworks-docker

Make Docker go on Ops Works</pakled>

Based on this AWS blog entry

Instructions

  1. Set up a new stack in Ops Works. Under Advanced set the following:
    • Chef version: 11.10
    • Use custom Chef cookbooks: https git url to this repo
    • Manage Berkshelf: Yes
    • Berkshelf version: 3.1.3
  2. Add a layer
    • Type: Other
    • Recipes
      • Setup: owdocker::install
      • Deploy: owdocker::docker-image-deploy
  3. Add an App
    • Type: Other
    • Repository type: Other
    • Environment variables:
      • registry_image: The path portion of a docker pull command ala: docker pull {{ registry image }}
      • registry_tag: The tag of the image that should be pulled from the registry
      • layer: The shortname of the layer the image should be deployed to
      • service_port: The port on the HOST that will be connected to the container
      • container_port: The port on the CONTAINER that will be connected to the service port
      • volumes: OPTIONAL argument to be passed as -v options (e.g. "/src/webapp:/opt/webapp")
      • registry_url: OPTIONAL url to a non hub.docker ala quay.io
      • registry_username: OPTIONAL username to login to the registry
      • registry_password: OPTIONAL password to login to the registry
      • registry_email: OPTIONAL email to login to the registry