Vertica package (currently with version 7.2.0.1 on community edition)
638
Last updated on: march, 24, 2016
Base OS is Ubuntu 14.04. This package is ready for usage and deployable with or without a persistent data store. I do not recommend running this on a production environment, as i have not yet fully tested it.
Start by pulling the image with the following command:
docker pull martijnz/vertica
For testing purposes, start Vertica without a persistent data store. This means all data will be removed when the Docker image stops.
docker run -p 5433:5433 --name 'vertica' martijnz/vertica
To run Vertica with a persistent data store run the following command:
docker run -p 5433:5433 -d -v /path/to/vertica_data:/home/dbadmin/docker martijnz/vertica
You can access the database with the following settings: database name: Docker database user: dbadmin password: leave this field empty
Running Vertica on Ubuntu
apt-get update && apt-get upgrade -y
apt-get install docker.io -y
docker run -p 5433:5433 --name 'vertica' -d -v /data:/home/dbadmin/docker martijnz/vertica
Content type
Image
Digest
Size
1.1 GB
Last updated
over 10 years ago
docker pull martijnz/vertica