We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7689228 commit ba686adCopy full SHA for ba686ad
.templates/timescaledb/service.yml
@@ -0,0 +1,10 @@
1
+ timescaledb:
2
+ container_name: timescaledb
3
+ image: timescale/timescaledb:latest-pg12
4
+ restart: unless-stopped
5
+ env_file:
6
+ - ./services/timescaledb/timescaledb.env
7
+ ports:
8
+ - 5432:5432
9
+ volumes:
10
+ - ./volumes/timescaledb/data:/var/lib/postgresql/data
.templates/timescaledb/timescaledb.env
@@ -0,0 +1,3 @@
+POSTGRES_USER=postuser
+POSTGRES_PASSWORD=postpassword
+POSTGRES_DB=postdb
0 commit comments