Skip to content

Commit

Permalink
docs: Update Docker installation instructions (#2552)
Browse files Browse the repository at this point in the history
Replace kjconroy/sqlc with sqlc/sqlc
  • Loading branch information
kyleconroy committed Aug 1, 2023
1 parent a88cfea commit 1999232
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/overview/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ go get github.com/sqlc-dev/sqlc/cmd/sqlc
## Docker

```
docker pull kjconroy/sqlc
docker pull sqlc/sqlc
```

Run `sqlc` using `docker run`:

```
docker run --rm -v $(pwd):/src -w /src kjconroy/sqlc generate
docker run --rm -v $(pwd):/src -w /src sqlc/sqlc generate
```

Run `sqlc` using `docker run` in the Command Prompt on Windows (`cmd`):

```
docker run --rm -v "%cd%:/src" -w /src kjconroy/sqlc generate
docker run --rm -v "%cd%:/src" -w /src sqlc/sqlc generate
```

## Downloads
Expand Down

0 comments on commit 1999232

Please sign in to comment.