This does not occur using the Windows binaries.
- Sign up for a 30-day trial TimescaleDB hosted instance at https://docs.timescale.com/install/latest/installation-cloud/ (no credit card required)
- Fill the missing fields in
.env
with the database credentials - Add the database port mapping to the exposed ports for web in
docker-compose.yml
(eg: 32341:32341 if tsdb cloud is running on port 32341) - Run
docker-compose build
- Run
docker-compose up web
- Go to http://localhost:3000/
When attempting to connect to the database using Prisma a segfault occurs and the process crashes.
To run this locally:
- Rename .env to something else
- Rename .local-db.env to .env
- Rebuild with
docker-compose build
- Run both a tsdb and next container with
docker-compose up
- Go to http://localhost:3000/
Using both node-pg and Prisma work as expected.