How to configure localstack?
{% include header.html %}
- Install docker (might need docker-compose separately for linux):
- In case docker-compose is not installed for Linux, refer to this
- Once docker is installed, spin up the daemon service by simply launching the Desktop version and then open a terminal. Execute
docker -vanddocker-compose -vto establish that both are running. - Next, pull the localstack image by running
docker pull localstack/localstack
- Once the setup is done, in case Docker Desktop is not running, spin it up initially.
- Navigate to the directory holding the
docker-compose.ymlandDockerfilein a terminal - Execute
docker-compose up --build
That's all, you will see the docker container spin up and the scripts specified under ./scripts executing
- When the container is started, we execute
./scripts/init.sh - This is the parent script that executes all the child scripts in the order of their imports.
For any queries, please create issues in the repository.