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

Fix login document docker-compose command typo #3786

Merged
merged 1 commit into from
Jan 13, 2023
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 src/web/docusaurus/docs/tools-and-technologies/login.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ You can [read more about how it works here](https://medium.com/disney-streaming/

To get this to run locally, you need to update your `.env`. Copy `env.example` if you don't have one, and the default values should work.

4. Start the backend apps using `docker-compose up –build`. This will build the SAML2 server that is being used as a local service for testing purposes, and Telescope (express). From there, you should be able to click on the login button at `http://localhost:3000/` that will redirect you to the proper login page.
4. Start the backend apps using `docker-compose up -–build`. This will build the SAML2 server that is being used as a local service for testing purposes, and Telescope (express). From there, you should be able to click on the login button at `http://localhost:3000/` that will redirect you to the proper login page.

:::note

If running Elasticsearch or Redis natively, please avoid using `docker-compose up -build` and instead use `docker-compose up login` to start the SAML2 server for testing. This will avoid any issues with duplicate services of Redis and Elasticsearch started by `docker-compose up -build`.
If running Elasticsearch or Redis natively, please avoid using `docker-compose up --build` and instead use `docker-compose up login` to start the SAML2 server for testing. This will avoid any issues with duplicate services of Redis and Elasticsearch started by `docker-compose up --build`.

:::

Expand Down