Sign inSign up

lamw/vibauthor

By lamw

Updated over 5 years ago

CentOS 6.10 installed with VMware VIB Author Utility

Image
6

10K+

lamw/vibauthor repository overview

VMware VIB Author Image

Description

This image uses CentOS 6.10 and includes Python 2.6 which is required to run VMware's VIB Author Fling Utility to create ESXi VIBs for ESXi 5.x, 6.x & 7.x

What is a VMware VIB?
What is the VMware VIB Author Fling?
How do I use VMware VIB Author Utility?
Dockerfile
FROM centos:6.10

# Working directory
WORKDIR /root

# Comment out Mirror Url
RUN sed -i 's/^m/#m/g' /etc/yum.repos.d/CentOS-Base.repo
# Uncomment Base URL
RUN sed -i 's/#b/b/g' /etc/yum.repos.d/CentOS-Base.repo
# Update URL to point to archive vault URL
RUN sed -i 's/mirror.centos.org/vault.centos.org/g' /etc/yum.repos.d/CentOS-Base.repo

# Download required packages
RUN yum -y install tar openssl python-lxml glibc.i686 git file

# Download VIB Author RPM
RUN curl -O http://download3.vmware.com/software/vmw-tools/vibauthor/vmware-esx-vib-author-5.0.0-0.0.847598.i386.rpm

# Install VIB Author
RUN rpm -ivh vmware-esx-vib-author-5.0.0-0.0.847598.i386.rpm

CMD ["/bin/bash"]

Tag summary

Content type

Image

Digest

sha256:4d5001c38

Size

187.3 MB

Last updated

over 5 years ago

docker pull lamw/vibauthor