We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d33408 commit b3be688Copy full SHA for b3be688
1 file changed
README.md
@@ -20,3 +20,21 @@ Certified as Indie Hacker's best friend!!!
20
- [ ] [Pg Repack](https://github.com/reorg/pg_repack)
21
22
Bootstrapped from [TimescaleDB](https://github.com/timescale/timescaledb-docker)
23
+
24
+### Usage with Compose
25
26
+```yaml
27
+version: '3.6'
28
+services:
29
+ warpsql:
30
+ container_name: warpsql
31
+ image: samagragovernance/postgres:latest-pg15
32
+ restart: always
33
+ ports:
34
+ - "5432:5432"
35
+ volumes:
36
+ - ./pgdata:/var/lib/postgresql/data
37
+ environment:
38
+ POSTGRES_USER: warpSQLUser
39
+ POSTGRES_PASSWORD: warpSQLPass
40
+```
0 commit comments