RETIRED, Lightweight OCI compatible image for Keystone
Go to file
Pete Birley 7cc7d64121 Merge pull request #22 from yaodu/common
@SamYaple Looks awesome man, I'll get CentOS updated ASAP.
2017-03-17 19:58:52 -05:00
dockerfiles Use tagged common scripts 2017-03-17 23:18:29 +00:00
LICENSE Initial commit 2017-01-09 06:56:57 +00:00
README.md Update Docs (#20) 2017-01-13 17:46:58 +00:00
update.sh Removed venv and pip 2017-01-13 23:15:40 +00:00

README.md

OpenStack yaodu/keystone

Docker Automated buil

Yaodu/keystone is a set of Dockerfiles that builds lightweight deployment agnostic images for OpenStack Keystone.

Images are built in the Docker Hub automatically on each push to the master branch to provide a continuously updated set of images based on a number of distributions. Additionally, this repo may be cloned and used to build images for OpenStack Keystone either for development purposes or as part of a CI/CD workflow.

Image Layer Info

Building locally

It's really easy to build images locally for the distro of your choice. To build an image you only need to run:

$ docker build https://github.com/yaodu/docker-keystone.git \
  --file dockerfiles/Dockerfile-debian \
  --tag yaodu/keystone:latest

You can, of course, substitute debian with your distro of choice.

For more advanced building you can use docker build arguments to define:

  • The git repo containing the OpenStack project the container should contain, GIT_REPO
  • The git ref the container should use when building, GIT_REF
  • The git repo the container should use when building from a git ref, GIT_REF_REPO
  • The docker image name to use for the base requirements python wheels, DOCKER_REPO
  • The docker image tag to use for the base requirements python wheels, DOCKER_TAG
  • If present, rather than using a docker image containing OpenStack requirements a tarball will be used from the defined URL, WHEELS

This makes it really easy to integrate Yaodu images into your development or CI/CD workflow, for example, if you wanted to build an image from this PS you could run:

$ docker build https://github.com/yaodu/docker-keystone.git \
  --file dockerfiles/Dockerfile-ubuntu \
  --tag mydockernamespace/keystone-testing:418167-1 \
  --build-arg GIT_REPO=http://git.openstack.org/openstack/keystone.git \
  --build-arg GIT_REF_REPO=http://git.openstack.org/openstack/keystone.git \
  --build-arg GIT_REF=refs/changes/67/418167/1

Customizing

The images should contain all the required assets for running the service. But if you wish or need to customize the yaodu/keystone image that's great! We hope to have built the images to make this as easy and flexible as possible. To do this we recommend that you perform any required customisation in a child image using a pattern similar to:

FROM yaodu/keystone:latest
MAINTAINER you@example.com

RUN set -x \
    && apt-get update \
    && apt-get install -y --no-install-recommends \
    your-awesome-binary-package \
    && rm -rf /var/lib/apt/lists/*