Skip to content

Commit b124171

Browse files
authored
Merge branch 'Samagra-Development:main' into main
2 parents e06d715 + a158c62 commit b124171

3 files changed

Lines changed: 31 additions & 5 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PREV_TS_IMAGE="samagragovernance/postgres:$(PREV_TS_VERSION)-pg$(PG_VER_NUMBER)$
1010
PREV_IMAGE=$(shell if docker pull "$(PREV_TS_IMAGE)" >/dev/null 2>&1; then echo "$(PREV_TS_IMAGE)"; else echo "timescale/timescaledb:$(PREV_TS_VERSION)-pg$(PG_VER_NUMBER)$(PREV_EXTRA)"; fi )
1111
# Beta releases should not be tagged as latest, so BETA is used to track.
1212
BETA=$(findstring rc,$(TS_VERSION))
13-
PLATFORM=linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
13+
PLATFORM=linux/amd64,linux/arm64
1414

1515
# PUSH_MULTI can be set to nothing for dry-run without pushing during multi-arch build
1616
PUSH_MULTI=--push

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,36 @@
1-
## Test on GitPod
1+
# WarpSQL
2+
Opinionated extensions to Postgres packaged as a single docker deployment.
3+
4+
### Test on GitPod
25
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/ChakshuGautam/postgres-tsdb-vector-docker)
36

4-
## Postgres
7+
### Current and future supported extensions
58

69
- [x] [PgVector](https://github.com/pgvector/pgvector)
710
- [x] [TimescaleDB](https://github.com/timescale/timescaledb)
811
- [ ] [Citus](https://www.citusdata.com/)
12+
- [ ] [PG Stats Statements](https://www.postgresql.org/docs/current/pgstatstatements.html)
13+
- [ ] [PostGIS](https://postgis.net)
14+
- [ ] [ZomboDB](https://github.com/zombodb/zombodb)
15+
- [ ] [PLV8](https://github.com/plv8/plv8)
16+
- [ ] [Pg Repack](https://github.com/reorg/pg_repack)
917

1018
Bootstrapped from [TimescaleDB](https://github.com/timescale/timescaledb-docker)
19+
20+
### Usage with Compose
21+
22+
```yaml
23+
version: '3.6'
24+
services:
25+
warpsql:
26+
container_name: warpsql
27+
image: samagragovernance/postgres:latest-pg15
28+
restart: always
29+
ports:
30+
- "5432:5432"
31+
volumes:
32+
- ./pgdata:/var/lib/postgresql/data
33+
environment:
34+
POSTGRES_USER: warpSQLUser
35+
POSTGRES_PASSWORD: warpSQLPass
36+
```

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.6'
22
services:
33
timescaledb:
44
container_name: timescaledb
5-
image: timescaledev/timescaledb:main-pg15
5+
image: samagragovernance/postgres:latest-pg15
66
restart: always
77
ports:
88
- "5432:5432"
@@ -32,4 +32,4 @@ services:
3232
## uncomment next line to set an admin secret
3333
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
3434
HASURA_GRAPHQL_MIGRATIONS_DISABLE_TRANSACTION: "true"
35-
HASURA_GRAPHQL_CONSOLE_ASSETS_DIR: /srv/console-assets
35+
HASURA_GRAPHQL_CONSOLE_ASSETS_DIR: /srv/console-assets

0 commit comments

Comments
 (0)