Skip to content

Instantly share code, notes, and snippets.

@tquach
Last active April 9, 2023 17:37
Show Gist options
  • Select an option

  • Save tquach/5a66abe1f0ad28bfcb44 to your computer and use it in GitHub Desktop.

Select an option

Save tquach/5a66abe1f0ad28bfcb44 to your computer and use it in GitHub Desktop.
Installing Vertica Management Console (MC) with Docker
FROM ubuntu:latest
# Download the deb from My Vertica portal and put in current directory.
ENV VERTICA_CONSOLE vertica-console_7.1.1-0_amd64.deb
RUN apt-get update -q -y && apt-get install -q -y \
curl \
gdb \
mcelog \
openssl \
openssh-server \
openssh-client \
sysstat
ADD $VERTICA_CONSOLE /tmp/$VERTICA_CONSOLE
EXPOSE 5450
ENTRYPOINT dpkg -i /tmp/$VERTICA_CONSOLE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment