Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuanyu90221/localstack_demo
https://github.com/yuanyu90221/localstack_demo
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yuanyu90221/localstack_demo
- Owner: yuanyu90221
- Created: 2023-04-10T18:35:53.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-10T18:36:42.000Z (almost 2 years ago)
- Last Synced: 2024-04-21T14:00:34.456Z (9 months ago)
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# localstack_demo
This is repository for localstack_demo
## introduction
```shell
curl -s localhost:4566/_localstack/health | jq
```## docker info
```yml
version: "3.8"services:
localstack:
container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
image: localstack/localstack
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
- "127.0.0.1:4510-4559:4510-4559" # external services port range
environment:
- DEBUG=${DEBUG-}
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
```