[PR #400] Added localstack example using docker compose #426

Open
opened 2025-11-06 14:25:58 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/400
Author: @ulises-jeremias
Created: 11/5/2023
Status: 🔄 Open

Base: masterHead: feature/localstack


📝 Commits (3)

  • 199c896 Added localstack example using docker compose
  • 3c4739d Update localstack configuration
  • 727c96f Update README.md with LocalStack Desktop information

📊 Changes

5 files changed (+129 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
localstack/.gitignore (+2 -0)
localstack/README.md (+90 -0)
localstack/compose.yml (+22 -0)
localstack/init.d/init.sh (+14 -0)

📄 Description

This PR adds an example using LocalStack to run cloud services locally with Docker Compose. This example shows how to use LocalStack to emulate AWS services locally using docker compose.

Project structure:

.
├── init.d/
│   └── init.sh
├── compose.yaml
└── README.md

compose.yaml

services:
  localstack:
    image: localstack/localstack:2.3.2
    ports:
      - "4566:4566" # LocalStack Gateway
      - "4510-4559:4510-4559" # external services port range
    ...

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/400 **Author:** [@ulises-jeremias](https://github.com/ulises-jeremias) **Created:** 11/5/2023 **Status:** 🔄 Open **Base:** `master` ← **Head:** `feature/localstack` --- ### 📝 Commits (3) - [`199c896`](https://github.com/docker/awesome-compose/commit/199c896deee11469f0d3580b2317e8159a3d4eca) Added localstack example using docker compose - [`3c4739d`](https://github.com/docker/awesome-compose/commit/3c4739d1744243167bc6ad56d829c04d5f1e0ebf) Update localstack configuration - [`727c96f`](https://github.com/docker/awesome-compose/commit/727c96f2e8ad3e0d8e3c55cea8dfaf632fdc9d38) Update README.md with LocalStack Desktop information ### 📊 Changes **5 files changed** (+129 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `localstack/.gitignore` (+2 -0) ➕ `localstack/README.md` (+90 -0) ➕ `localstack/compose.yml` (+22 -0) ➕ `localstack/init.d/init.sh` (+14 -0) </details> ### 📄 Description This PR adds an example using [LocalStack](https://localstack.cloud/) to run cloud services locally with Docker Compose. This example shows how to use LocalStack to emulate AWS services locally using docker compose. Project structure: ```text . ├── init.d/ │ └── init.sh ├── compose.yaml └── README.md ``` compose.yaml ```yml services: localstack: image: localstack/localstack:2.3.2 ports: - "4566:4566" # LocalStack Gateway - "4510-4559:4510-4559" # external services port range ... ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 14:25:58 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#426