Skip to content

Commit

Permalink
chore: document new docker images in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Nov 25, 2024
1 parent 9f8a534 commit 258889e
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,50 @@ Embed an SQLite database in your PostgreSQL table. AKA multitenancy has been sol

## Usage

Run a PostgreSQL database that has `pglite-fusion` already installed.
Run a PostgreSQL 17 database that has `pglite-fusion` already installed.

```bash
docker run --network=host frectonz/pglite-fusion
```

`pglite-fusion` is also distributed with other PostgreSQL versions.

### PostgreSQL 12

```bash
docker run --network=host frectonz/pglite-fusion:pg-12
```

### PostgreSQL 13

```bash
docker run --network=host frectonz/pglite-fusion:pg-13
```

### PostgreSQL 14

```bash
docker run --network=host frectonz/pglite-fusion:pg-14
```

### PostgreSQL 15

```bash
docker run --network=host frectonz/pglite-fusion:pg-15
```

### PostgreSQL 16

```bash
docker run --network=host frectonz/pglite-fusion:pg-16
```

### PostgreSQL 17

```bash
docker run --network=host frectonz/pglite-fusion:pg-17
```

Connect to the PostgreSQL database using `psql`.

```bash
Expand Down

0 comments on commit 258889e

Please sign in to comment.