Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes docker command #219

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/connect-supertokens-to-database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ For this setup to work, we must connect SuperTokens and PostgreSQL via the host
- Run the SuperTokens docker image with the env var specifying the PostgreSQL connection URI:

```bash
docker run \
docker run \
-p 3567:3567 \
--network=host \
-e POSTGRESQL_CONNECTION_URI="postgresql://supertokens_user:[email protected]:5432/supertokens" \
Expand Down Expand Up @@ -488,7 +488,7 @@ For this setup to work, we must connect SuperTokens and PostgreSQL via the host
- Run the SuperTokens docker image with the env var specifying the PostgreSQL connection URI:

```bash
docker run \
docker run \
-p 3567:3567 \
--network=host \
-e POSTGRESQL_CONNECTION_URI="postgresql://supertokens_user:[email protected]:5432/supertokens" \
Expand Down
Loading