You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/aws/getting-started/faq.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -230,7 +230,7 @@ We advise you to exercise caution.
230
230
:::
231
231
232
232
You can change the LocalStack `volume` folder to use the WSL Linux file system instead of the Windows host folder.
233
-
To do so, you need to change the [`docker-compose.yml`](https://github.com/localstack/localstack/blob/master/docker-compose-pro.yml) file and add the following lines:
233
+
To do so, you need to change the [`docker-compose.yml`](https://github.com/localstack/localstack/blob/main/docker-compose-pro.yml) file and add the following lines:
234
234
235
235
<Tabs>
236
236
<TabItemlabel="WSL Linux File System">
@@ -352,4 +352,4 @@ For more details, please take a look at our [Enterprise offering](https://locals
352
352
353
353
The LocalStack Web Application connects to your LocalStack container running on your local machine and retrieves the information directly via the `localhost` without using the internet.
354
354
Features such as Resource Browsers, IAM Policy Stream, Chaos Engineering dashboard, and others communicate directly with the LocalStack container using your browser.
355
-
None of the information is sent to the internet, or stored on any external servers maintained by LocalStack.
355
+
None of the information is sent to the internet, or stored on any external servers maintained by LocalStack.
Copy file name to clipboardExpand all lines: src/content/docs/aws/getting-started/installation.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -294,7 +294,7 @@ docker compose up
294
294
```
295
295
296
296
:::note
297
-
- This command pulls the current nightly build from the `master` branch (if you don't have the image locally) and **not** the latest supported version.
297
+
- This command pulls the current nightly build from the `main` branch (if you don't have the image locally) and **not** the latest supported version.
298
298
If you want to use a specific version, set the appropriate LocalStack image tag at `services.localstack.image` in the `docker-compose.yml` file (for example `localstack/localstack:<version>`).
299
299
300
300
- If you are using LocalStack with an [Auth Token](/aws/getting-started/auth-token), you need to specify the image tag as `localstack/localstack-pro` in the `docker-compose.yml` file.
@@ -365,7 +365,7 @@ docker run \
365
365
</Tabs>
366
366
367
367
:::note
368
-
- This command pulls the current nightly build from the `master` branch (if you don't have the image locally) and **not** the latest supported version.
368
+
- This command pulls the current nightly build from the `main` branch (if you don't have the image locally) and **not** the latest supported version.
369
369
If you want to use a specific version of LocalStack, use the appropriate tag: `docker run --rm -it -p 4566:4566 -p 4510-4559:4510-4559 localstack/localstack:<tag>`.
370
370
Check-out the [LocalStack releases](https://github.com/localstack/localstack/releases) to know more about specific LocalStack versions.
371
371
@@ -377,7 +377,7 @@ docker run \
377
377
- Mounting the Docker socket `/var/run/docker.sock` as a volume is required for some services that use Docker to provide the emulation, such as AWS Lambda.
378
378
Check out the [Lambda providers](/aws/services/lambda) documentation for more information.
379
379
380
-
- When using Docker to manually start LocalStack, you will have to configure the container on your own (see [docker-compose-pro.yml](https://github.com/localstack/localstack/blob/master/docker-compose-pro.yml) and [Configuration](/aws/capabilities/config/configuration).
380
+
- When using Docker to manually start LocalStack, you will have to configure the container on your own (see [docker-compose-pro.yml](https://github.com/localstack/localstack/blob/main/docker-compose-pro.yml) and [Configuration](/aws/capabilities/config/configuration).
381
381
This could be seen as the "expert mode" of starting LocalStack.
382
382
If you are looking for a simpler method of starting LocalStack, please use the [LocalStack CLI](#localstack-cli).
383
383
@@ -440,7 +440,7 @@ If you are using the `localstack` CLI to start LocalStack, but the container is
440
440
```bash
441
441
DNS_ADDRESS=0 localstack start
442
442
```
443
-
- Remove port 53 as indicated in our [standard `docker-compose.yml` file](https://github.com/localstack/localstack/blob/master/docker-compose-pro.yml).
443
+
- Remove port 53 as indicated in our [standard `docker-compose.yml` file](https://github.com/localstack/localstack/blob/main/docker-compose-pro.yml).
444
444
445
445
#### How should I access the LocalStack logs on my local machine?
446
446
@@ -483,4 +483,4 @@ After running the task, run the diagnostic endpoint and share the archive file w
483
483
484
484
We have extensive network troubleshooting documentation available [here](/aws/capabilities/networking/).
485
485
486
-
If this does not solve your problem then please [reach out](/aws/getting-started/help-support).
486
+
If this does not solve your problem then please [reach out](/aws/getting-started/help-support).
Copy file name to clipboardExpand all lines: src/content/docs/aws/tooling/extensions/developing-extensions.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ This section provides a brief overview of how to develop your own extensions.
15
15
16
16
## Extensions API
17
17
18
-
LocalStack exposes a Python API for building extensions that can be found in the core codebase in [`localstack.extensions.api`](https://github.com/localstack/localstack/tree/master/localstack-core/localstack/extensions/api).
18
+
LocalStack exposes a Python API for building extensions that can be found in the core codebase in [`localstack.extensions.api`](https://github.com/localstack/localstack/tree/main/localstack-core/localstack/extensions/api).
0 commit comments