Sign inSign up

lamw/rvc

By lamw

Updated almost 11 years ago

Docker Container for vSphere 6.0 Update 1 version of the Ruby vSphere Console (RVC)

Image
3

100K+

lamw/rvc repository overview

Dockerfile
FROM ubuntu:latest
MAINTAINER [email protected]

# Update OS
RUN apt-get update

# Install pre-req
RUN apt-get install -yq build-essential \
       ruby-full \
       zlib1g-dev \
       gem && \
     apt-get clean

# Install out-of-date rbvmomi & RVC from Github to get required libs
RUN gem install ffi gnuplot rvc

# Symlink required else RVC fails to load
RUN ln -s /lib/x86_64-linux-gnu/libreadline.so.6 /lib/x86_64-linux-gnu/libreadline.so && ldconfig

# Add latest RVC from VCSA 6.0u1 (Build 3040890)
# Copied /opt/vmware/rvc to rvc-vsphere60u1
# Copied /usr/bin/rvc to rvc
RUN mkdir /opt/vmware
ADD rvc-vsphere60u1 /opt/vmware/rvc/
ADD rvc /usr/local/bin/rvc

# Run Bash when the image starts
CMD ["/bin/bash"]

Tag summary

Content type

Image

Digest

sha256:6504e6945

Size

233.5 MB

Last updated

almost 11 years ago

docker pull lamw/rvc