Docker image for preparing the Openstack Octavia disk images
245
# docker build --no-cache -t velp/openstack-octavia-diskimage-builder:latest - < Dockerfile
FROM ubuntu:16.04
RUN apt-get update -qq && \
apt-get install -y qemu uuid-runtime curl kpartx git \
jq python-pip debootstrap lsb-release sudo && \
pip install argparse Babel>=1.3 dib-utils PyYAML diskimage-builder && \
rm -rf /var/lib/apt/lists/*
git clone https://github.com/openstack/octavia
docker run -it --rm -v ./octavia:/octavia -w /octavia/diskimage-create --privileged velp/openstack-octavia-diskimage-builder ./diskimage-create.sh -x -t raw
For details, see the Octavia diskimage-builder documentation: https://github.com/openstack/octavia/tree/master/diskimage-create
Content type
Image
Digest
Size
329.2 MB
Last updated
about 7 years ago
docker pull velp/openstack-octavia-diskimage-builder