All public logs
Jump to navigation
Jump to search
Combined display of all available logs of DER's LLC. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:06, 2 June 2023 Admin talk contribs created page VMware/ovftool (Created page with "= Build OVFTOOL Docker = == 1. Download OVFTOOL from My VMware == == 2. Create Dockerfile == FROM ubuntu:20.04 LABEL MAINTAINER "Daniel Roessner" # Suppress warning about UTF-8 ENV LC_CTYPE=POSIX ENV OVFTOOL_FILENAME=VMware-ovftool-4.4.2-17901668-lin.x86_64.bundle ADD $OVFTOOL_FILENAME /tmp/ WORKDIR /root RUN /bin/sh /tmp/$OVFTOOL_FILENAME --console --required --eulas-agreed && \ rm -f /tmp/$OVFTOOL_FILENAME ENTRYPOINT ["ovftool"] == 3. Build t...")