Last active
November 1, 2018 02:53
-
-
Save parasquid/5de4fa8ec49722a277b1d871015da767 to your computer and use it in GitHub Desktop.
various docker services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# starts postgres | |
docker run --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres | |
# starts postgres with timescaledb | |
docker run --name timescaledb -e POSTGRES_PASSWORD=postgres -p 5432:5432 timescale/timescaledb:1.0.0-pg10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment