File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "services" : {
3+ "s3" : {
4+ "buckets" : [
5+ {
6+ "name" : " dev-bucket"
7+ }
8+ ]
9+ }
10+ }
11+ }
Original file line number Diff line number Diff line change @@ -30,9 +30,24 @@ services:
3030 POSTGRES_PASSWORD : password
3131 POSTGRES_DATABASE : skillrx_development
3232
33+ localstack :
34+ image : localstack/localstack
35+ ports :
36+ - " 127.0.0.1:4566:4566" # LocalStack Gateway
37+ - " 127.0.0.1:4510-4559:4510-4559" # external services port range
38+ environment :
39+ - SERVICES=s3
40+ - DEBUG=1
41+ # - DATA_DIR=/tmp/localstack/data
42+ - LOCALSTACK_HOME=/root/.localstack # Set LocalStack home directory
43+ volumes :
44+ - " ${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
45+ - " /var/run/docker.sock:/var/run/docker.sock"
46+ - ./.localstack:/root/.localstack
47+
3348volumes :
3449 db_data :
3550
3651networks :
3752 default :
38- name : skillrx_network
53+ name : skillrx_network
You can’t perform that action at this time.
0 commit comments