Eliminate the complexity and delays of traditional cloud development by replicating fully functional cloud applications on your local infrastructure. This allows you to build, test, and debug freely, with the same production behavior, but with a much faster feedback loop and full control over your environment.
It provides a high-fidelity emulation of cloud services, so you can build with confidence and avoid surprises when you deploy. Key benefits include:
services:
localstack:
container_name: localstack-main
image: localstack/localstack
ports:
- "127.0.0.1:4566:4566"
- "127.0.0.1:4510-4559:4510-4559"
environment:
- DEBUG=0
- LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN}
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- ./localstack-data:/var/lib/localstack
- /var/run/docker.sock:/var/run/docker.sockLOCALSTACK_AUTH_TOKEN=your_localstack_auth_token_here_if_proAuto-fetched 10 minutes ago
Auto-fetched 10 minutes ago