Open AlexanderFillbrunn opened 4 months ago
I had the same issue. The extension is available in the timescale/timescaledb-ha
images. To be fair, the link in the README points to a guide, where the correct image is specified. Maybe it should be clarified in the docs?
Thanks @Coderik for the hint! I am going to use the -ha image for now. IMHO rather than adjusting the docs, the extension should also be available in the non-HA image. I do not see a reason to only provide it with high availability.
yes we only have it in timescale/timescaledb-ha
we'll try to get it into the other image as well. Will leave this open until that happens.
Hi @cevian, thank you! Are the Dockerfiles for timescaledb-ha and timescaledb available somewhere? I could maybe give it a shot myself.
I also had the problem that I could only use vectorscale on ha images. I think it would be a good idea to be able to use vectorscale on "normal" images for testing in a local development environment. I hope it comes soon.
Thanks to @ethagnawl .
Hi! I am trying to run the Docker image timescale/timescaledb:latest-pg16 with a fresh volume, but
CREATE EXTENSION IF NOT EXISTS vectorscale CASCADE;
fails:Running
SELECT * FROM pg_extension;
only returns plpgsql and timescaledb and checking inside the container there is no vectorscale.control in /usr/local/share/postgresql/extension/. I do see vector.control and timescaledb.control there, though.This is my experimental docker compose service for TimescaleDB:
Any hint how to get this running is appreciated. Happy to test your suggestions.