Skip to content

Commit 754027b

Browse files
docs[fix]: found more community mentions (#528)
1 parent 0bb345b commit 754027b

File tree

10 files changed

+13
-82
lines changed

10 files changed

+13
-82
lines changed

src/content/docs/aws/getting-started/faq.mdx

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: FAQ
3-
description: Frequently asked questions about LocalStack for AWS, Enterprise, and Community Editions.
3+
description: Frequently asked questions about LocalStack for AWS.
44
template: doc
55
sidebar:
66
order: 5
@@ -213,14 +213,10 @@ volumes:
213213
If you have an active AWS account, you can use the public AWS ECR image.
214214
You can use the following command to pull the image:
215215

216-
<Tabs>
217-
<TabItem label="Community">
218-
```shell docker pull public.ecr.aws/localstack/localstack:latest ```
219-
</TabItem>
220-
<TabItem label="Pro">
221-
```shell docker pull public.ecr.aws/localstack/localstack-pro:latest ```
222-
</TabItem>
223-
</Tabs>
216+
```shell
217+
docker pull public.ecr.aws/localstack/localstack-pro:latest
218+
```
219+
224220

225221
### How to increase IO performance for LocalStack's Docker image under Windows?
226222

@@ -338,7 +334,7 @@ We use Dependabot to scan our GitHub repositories, and Trivy as well as Snyk (am
338334

339335
### Does LocalStack provide offline capabilities?
340336

341-
LocalStack Community and Pro images provide limited offline capabilities.
337+
Yes, the LocalStack image does provide limited offline capabilities.
342338
To use a fully-fledged offline mode, you may use LocalStack Enterprise, which can be used in air-gapped environments.
343339
The regular LocalStack Docker images may need to download additional dependencies for specific services (e.g., Elasticsearch, Big Data services) at runtime, while the offline image bakes all dependencies into the image, along with any other configuration that you might need.
344340
For more details, please take a look at our [Enterprise offering](https://localstack.cloud/pricing).

src/content/docs/aws/getting-started/help-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Users are encouraged to help others by sharing their knowledge and experiences.
101101
#### LocalStack Slack Community
102102

103103
LocalStack Slack Community includes LocalStack users, contributors, and maintainers.
104-
If you need help with the community version of LocalStack, please use the `#help` channel.
104+
If you need help, please use the `#help` channel.
105105
You can sign up for the [LocalStack Slack Community](https://localstack.cloud/slack) by creating an account.
106106

107107
#### GitHub Discussions

src/content/docs/aws/getting-started/installation.mdx

Lines changed: 1 addition & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Besides using the CLI, there are other ways of starting and managing your LocalS
217217

218218
LocalStack runs inside a Docker container, and the above options are different ways to start and manage the LocalStack Docker container.
219219

220-
The LocalStack emulator is available on Docker Hub in two editions: the Community Edition (`localstack/localstack`) and the Pro Edition (`localstack/localstack-pro`).
220+
The LocalStack emulator is available on Docker Hub (`localstack/localstack-pro`).
221221

222222
For a comprehensive overview of the LocalStack images, check out our [Docker images documentation](/aws/capabilities/config/docker-images).
223223

@@ -245,27 +245,6 @@ If you want to manually manage your Docker container, it's usually a good idea t
245245
You can start LocalStack with [Docker Compose](https://docs.docker.com/compose/) by configuring a `docker-compose.yml` file.
246246
Docker Compose v1.9.0 and above is supported.
247247

248-
<Tabs>
249-
250-
<TabItem label="Community">
251-
```yaml showshowLineNumbers
252-
services:
253-
localstack:
254-
container_name: "${LOCALSTACK_DOCKER_NAME:-localstack-main}"
255-
image: localstack/localstack
256-
ports:
257-
- "127.0.0.1:4566:4566" # LocalStack Gateway
258-
- "127.0.0.1:4510-4559:4510-4559" # external services port range
259-
environment:
260-
# LocalStack configuration: https://docs.localstack.cloud/references/configuration/
261-
- DEBUG=${DEBUG:-0}
262-
volumes:
263-
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
264-
- "/var/run/docker.sock:/var/run/docker.sock"
265-
```
266-
</TabItem>
267-
268-
<TabItem label="Pro" >
269248
```yaml showshowLineNumbers
270249
services:
271250
localstack:
@@ -285,9 +264,7 @@ services:
285264
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
286265
- "/var/run/docker.sock:/var/run/docker.sock"
287266
```
288-
</TabItem>
289267
290-
</Tabs>
291268
292269
Start the container by running the following command:
293270
@@ -338,20 +315,6 @@ If it does not report an error (but shows information on your Docker system), yo
338315

339316
You can start the Docker container simply by executing the following `docker run` command:
340317

341-
<Tabs>
342-
343-
<TabItem label="Community" >
344-
```bash
345-
docker run \
346-
--rm -it \
347-
-p 127.0.0.1:4566:4566 \
348-
-p 127.0.0.1:4510-4559:4510-4559 \
349-
-v /var/run/docker.sock:/var/run/docker.sock \
350-
localstack/localstack
351-
```
352-
</TabItem>
353-
354-
<TabItem label="Pro" >
355318
```bash
356319
docker run \
357320
--rm -it \
@@ -362,9 +325,6 @@ docker run \
362325
-v /var/run/docker.sock:/var/run/docker.sock \
363326
localstack/localstack-pro
364327
```
365-
</TabItem>
366-
367-
</Tabs>
368328

369329
:::note
370330
- 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.

src/content/docs/aws/integrations/aws-native-tools/aws-cdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It is advisable to prioritize re-creating (deleting and re-deploying) over updat
9696

9797
CDK Asset deployment (e.g., Lambda code, S3 content) requires a LocalStack paid plan.
9898

99-
This process relies on the `AWS::CloudFormation::CustomResource` API, which is not available in the Community edition. If deployments hang or fail silently, check the LocalStack logs for `CustomResource` errors.
99+
This process relies on the `AWS::CloudFormation::CustomResource` API. If deployments hang or fail silently, check the LocalStack logs for `CustomResource` errors.
100100
:::
101101

102102
### Stacks with validated certificates

src/content/docs/aws/integrations/containers/rancher-desktop.mdx

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -121,26 +121,6 @@ rancher-desktop --start
121121
122122
Modify your Docker Compose configuration to work with Rancher Desktop:
123123
124-
<Tabs>
125-
<TabItem label="Community">
126-
```yml showshowLineNumbers
127-
services:
128-
localstack:
129-
container_name: "${LOCALSTACK_DOCKER_NAME:-localstack-main}"
130-
image: localstack/localstack
131-
ports:
132-
- "127.0.0.1:4566:4566"
133-
- "127.0.0.1:4510-4559:4510-4559"
134-
networks:
135-
- rancher
136-
environment:
137-
- DEBUG=${DEBUG:-0}
138-
volumes:
139-
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
140-
- "/var/run/docker.sock:/var/run/docker.sock"
141-
```
142-
</TabItem>
143-
<TabItem label="Pro">
144124
```yml showshowLineNumbers
145125
services:
146126
localstack:
@@ -160,8 +140,6 @@ services:
160140
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
161141
- "/var/run/docker.sock:/var/run/docker.sock"
162142
```
163-
</TabItem>
164-
</Tabs>
165143
166144
Finally, start the services using `docker compose up` or `nerdctl compose up`, depending on your configuration.
167145
This will launch your LocalStack instance configured to interact with Rancher Desktop.

src/content/docs/aws/services/ec2.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ You may choose between plain mocked resources, containerized or virtualized.
214214
With the Mock VM manager, all resources are stored as in-memory representation.
215215
This only offers the CRUD capability.
216216

217-
This is the default VM manager in LocalStack Community edition.
218217
To use this VM manager in LocalStack for AWS, set [`EC2_VM_MANAGER`](/aws/capabilities/config/configuration#ec2) to `mock`.
219218

220219
This serves as the fallback manager if an operation is not implemented in other VM managers.

src/content/docs/aws/services/logs.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import { Badge } from '@astrojs/starlight/components';
1212

1313
[CloudWatch Logs](https://docs.aws.amazon.com/cloudwatch/index.html) allows to store and retrieve logs.
1414
While some services automatically create and write logs (e.g. Lambda), logs can also be added manually.
15-
CloudWatch Logs is available in the Community version.
16-
However, some specific features are only available in Pro.
1715

1816
## Subscription Filters
1917

src/content/docs/aws/services/pinpoint.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Begin by making a OTP request:
109109
awslocal pinpoint send-otp-message \
110110
--application-id fff5a801e01643c18a13a763e22a8fbf \
111111
--send-otp-message-request-parameters '{
112-
"BrandName": "LocalStack Community",
112+
"BrandName": "LocalStack Pro",
113113
"Channel": "SMS",
114114
"DestinationIdentity": "+1224364860",
115115
"ReferenceId": "liftoffcampaign",
@@ -137,7 +137,7 @@ curl http://localhost:4566/_aws/pinpoint/fff5a801e01643c18a13a763e22a8fbf/liftof
137137
```bash title="Output"
138138
{
139139
"AllowedAttempts": 3,
140-
"BrandName": "LocalStack Community",
140+
"BrandName": "LocalStack Pro",
141141
"CodeLength": 6,
142142
"DestinationIdentity": "+1224364860",
143143
"OriginationIdentity": "+1123581321",

src/content/docs/aws/services/rds.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ As of now, snapshots are not supported for MariaDB.
195195

196196
### MySQL Engine
197197

198-
A MySQL community server will be launched in a new Docker container upon requesting the MySQL engine.
198+
A MySQL server will be launched in a new Docker container upon requesting the MySQL engine.
199199

200200
The `engine-version` will serve as the tag for the Docker image, allowing you to freely select the desired MySQL version from those available on the [official MySQL Docker Hub](https://hub.docker.com/_/mysql).
201201
If you have a specific image in mind, you can also use the environment variable `MYSQL_IMAGE=<my-image:tag>`.

src/content/docs/aws/tutorials/s3-static-website-terraform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ We will also learn about `tflocal`, a CLI wrapper created by LocalStack, that al
3232

3333
For this tutorial, you will need:
3434

35-
- [LocalStack Community](https://github.com/localstack/localstack)
35+
- [LocalStack for AWS](https://hub.docker.com/r/localstack/localstack)
3636
- [Terraform](https://www.terraform.io/downloads.html)
3737
- [awslocal](https://github.com/localstack/awscli-local)
3838

0 commit comments

Comments
 (0)