Last active
April 9, 2023 17:37
-
-
Save tquach/5a66abe1f0ad28bfcb44 to your computer and use it in GitHub Desktop.
Installing Vertica Management Console (MC) with Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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