Single Node in Docker
Pre-installation
Install
docker run -d --name timescaledb -p 5432:5432 \
-e POSTGRES_PASSWORD=password timescale/timescaledb:latest-pg14
docker start /timescaledb
docker container ls
docker ps -a
User name:postgres
Password: password
Remove
docker rm /timescaledb