We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 753b755 commit f52b9ceCopy full SHA for f52b9ce
1 file changed
docker-compose.yml
@@ -144,6 +144,20 @@ services:
144
WORKERS: 2
145
WEB_CONCURRENCY: 5
146
KEEP_ALIVE: 2
147
+ sublime_localstack:
148
+ container_name: sublime_localstack
149
+ image: localstack/localstack:4.10.0
150
+ ports:
151
+ - "127.0.0.1:4566:4566" # LocalStack Gateway
152
+ - "127.0.0.1:4510-4559:4510-4559" # external services port range
153
+ networks:
154
+ - net
155
+ environment:
156
+ # LocalStack configuration: https://docs.localstack.cloud/references/configuration/
157
+ - DEBUG=0
158
+ volumes:
159
+ - localstack:/var/lib/localstack
160
+ #- "/var/run/docker.sock:/var/run/docker.sock"
161
162
networks:
163
net:
@@ -152,3 +166,4 @@ volumes:
166
postgres:
167
logs:
168
s3_data:
169
+ localstack:
0 commit comments