-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from supertokens/docker-command-fix
fixes docker command
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" \ | ||
|
@@ -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" \ | ||
|