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
For additional known issues related to Git Bash, you can refer to the following link: [Git Bash Known Issues](https://github.com/git-for-windows/build-extra/blob/main/ReleaseNotes.md#known-issues)
### How to increase IO performance for LocalStack's Docker image under Windows?
216
225
217
-
{{< callout "note">}}
226
+
:::note
218
227
Some options that are not part of the standard configuration may have unintended consequences for AWS services that operate within LocalStack.
219
228
For example, these options may interfere with the functionality of AppSync function executor, RDS MySQL persistence and SageMaker.
220
229
We advise you to exercise caution.
221
-
{{< /callout >}}
230
+
:::
222
231
223
232
You can change the LocalStack `volume` folder to use the WSL Linux file system instead of the Windows host folder.
224
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:
225
234
226
-
{{< tabpane text=true >}}
227
-
{{< tab header="WSL Linux File System" >}}
228
-
{{% markdown %}}
235
+
<Tabs>
236
+
<TabItemlabel="WSL Linux File System">
229
237
230
238
```yaml
231
239
volumes:
@@ -236,23 +244,17 @@ To do so, you need to change the [`docker-compose.yml`](https://github.com/local
236
244
---
237
245
238
246
As an alternative, you can set the volume as `- "~/volume:/var/lib/localstack"` then start Docker using command `wsl docker compose -f docker-compose.yml up`.
239
-
240
-
{{% /markdown %}}
241
-
{{< /tab >}}
242
-
{{< tab header="Docker Volumes" >}}
243
-
{{% markdown %}}
244
-
247
+
</TabItem>
248
+
<TabItem label="Docker Volumes">
245
249
```yaml
246
250
volumes:
247
251
- "/var/run/docker.sock:/var/run/docker.sock"
248
252
- "localstack_data:/var/lib/localstack" # mount Docker volume
249
253
volumes:
250
254
localstack_data:
251
255
```
252
-
253
-
{{% /markdown %}}
254
-
{{< /tab >}}
255
-
{{< /tabpane >}}
256
+
</TabItem>
257
+
</Tabs>
256
258
257
259
For more details visit [Docker WSL documentation](https://docs.docker.com/desktop/wsl), [Docker WSL best practices](https://docs.docker.com/desktop/wsl/best-practices) and [Docker Volumes documentation](https://docs.docker.com/storage/volumes/).
258
260
@@ -272,11 +274,11 @@ Pushing and pulling a Cloud Pod from our Web Application is facilitated by using
272
274
273
275
The easiest way to check if LocalStack Pro or Enterprise is activated is to check the health endpoint of LocalStack for a list of the running services:
274
276
275
-
{{< command >}}
277
+
```bash
276
278
$ curl localhost:4566/_localstack/health | jq
277
-
{{< / command >}}
279
+
```
278
280
279
-
If a Pro-only [service]({{< ref "aws" >}}) -- like [XRay]({{< ref "xray" >}}) -- is running, LocalStack Pro or Enterprise has started successfully.
281
+
If a Pro-only service-- like [XRay](/aws/services/x-ray) -- is running, LocalStack Pro or Enterprise has started successfully.
280
282
If your Auth Token is invalid, you will see an error message like this in the logs of LocalStack:
281
283
282
284
```bash
@@ -292,7 +294,7 @@ If the Auth Token still does not work, please [contact us](https://localstack.cl
292
294
A CI Auth Token allows you to use LocalStack in your CI environment.
293
295
Every activation with a CI Auth Token consumes one CI credit.
294
296
This means that with every build triggered through the LocalStack container you will consume one credit.
295
-
To understand the CI pricing across our product tiers, follow up with our [LocalStack in CI]({{<ref "user-guide/ci">}}) documentation.
297
+
To understand the CI pricing across our product tiers, follow up with our [LocalStack in CI](/aws/integrations/continuous-integration/) documentation.
296
298
297
299
### What should I do if I cannot connect to LocalStack API?
298
300
@@ -319,9 +321,9 @@ socket.gaierror: [Errno -3] Temporary failure in name resolution
319
321
320
322
Confirm this by using a tool like `dig`:
321
323
322
-
{{< command >}}
324
+
```bash
323
325
$ dig api.localstack.cloud
324
-
{{< / command >}}
326
+
```
325
327
326
328
If the result has some other status than `status: NOERROR,` your machine cannot resolve this domain.
0 commit comments