Skip to content

Commit

Permalink
Merge pull request #73 from RotherOSS/issue-rotheross/otobo#1295-edge…
Browse files Browse the repository at this point in the history
…_service

Issue RotherOSS/otobo#1295: add a compose snippet for starting localstack
  • Loading branch information
bschmalhofer authored Oct 8, 2021
2 parents c1d5bb0 + 2abc1d4 commit 932048d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docker-compose/otobo-localstack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Docker compose file for mocking AWS S3 with localstack.
# This is intended only for development and for testing.

# Access via port 4566 which is exposed to the Docker host.

# See also README.md .
# See also https://hub.docker.com/r/localstack/localstack .

# same version as in otobo-base.yml
version: '3.3'

services:

localstack:
image: localstack/localstack
ports:
- "4566:4566"
- "4571:4571"
- "${PORT_WEB_UI-8080}:${PORT_WEB_UI-8080}"
environment:
- SERVICES=${SERVICES-s3}
- DEFAULT_REGION=eu-central-1
volumes:
- tmp_localstack:/tmp/localstack
volumes:
tmp_localstack: {}

0 comments on commit 932048d

Please sign in to comment.