# Title
AWS service emulator that runs in a single container.
1. [TL;DR](#tldr)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL;DR
Setup
```sh
brew install 'localstack/tap/localstack-cli'
localstack --version
# Install on Kubernetes
helm -n 'localstack' upgrade -i --create-namespace 'localstack' --repo 'https://helm.localstack.cloud' 'localstack'
```
Usage
```sh
# Validate the configuration
localstack config validate
# Run
docker run --rm -it \
-p '127.0.0.1:4566:4566' -p '127.0.0.1:4510-4559:4510-4559' \
-v '/var/run/docker.sock:/var/run/docker.sock' \
'localstack/localstack'
```
## Further readings
- [Website]
- [Codebase]
- [Documentation]
### Sources
[codebase]: https://github.com/localstack/localstack
[documentation]: https://docs.localstack.cloud/
[website]: https://www.localstack.cloud/