- Install PostgreSql 11.
$ sudo rpm -Uvh https://yum.postgresql.org/11/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
$ sudo yum install postgresql11-contrib
2. install Docker image.
$ docker run -d — name timescaledb -p 5432:5432 -e POSTGRES_PASSWORD=password timescale/timescaledb:latest-pg11
3. Connect to the server.
$ psql -h localhost -p 5432 -U postgres