@@ -2,60 +2,61 @@ version: "3"
2
2
services :
3
3
4
4
dynamodb :
5
- image : cnadiminti /dynamodb-local:latest
5
+ image : amazon /dynamodb-local:latest
6
6
ports :
7
7
- " 8000:8000"
8
8
dynamodb-create :
9
- image : infrastructureascode /aws-cli:latest
9
+ image : amazon /aws-cli:latest
10
10
links :
11
11
- dynamodb
12
12
entrypoint : sh
13
- command : ./ create-tables.sh
13
+ command : create-tables.sh
14
14
volumes :
15
- - ./scripts/create-tables.sh:/project /create-tables.sh:ro
15
+ - ./scripts/create-tables.sh:/aws /create-tables.sh:ro
16
16
environment :
17
17
- AWS_ACCESS_KEY_ID=local
18
18
- AWS_SECRET_ACCESS_KEY=local
19
19
- AWS_DEFAULT_REGION=eu-west-1
20
20
- AWS_ENDPOINT_URL=http://dynamodb:8000
21
21
22
22
sqs :
23
- image : softwaremill/elasticmq:latest
23
+ image : softwaremill/elasticmq-native :latest
24
24
ports :
25
25
- " 9324:9324"
26
+ command : " -Dnode-address.host=\" *\" "
26
27
sqs-create :
27
- image : infrastructureascode /aws-cli:latest
28
+ image : amazon /aws-cli:latest
28
29
links :
29
30
- sqs
30
31
entrypoint : sh
31
- command : ./ create-queues.sh
32
+ command : create-queues.sh
32
33
volumes :
33
- - ./scripts/create-queues.sh:/project /create-queues.sh:ro
34
+ - ./scripts/create-queues.sh:/aws /create-queues.sh:ro
34
35
environment :
35
36
- AWS_ACCESS_KEY_ID=local
36
37
- AWS_SECRET_ACCESS_KEY=local
37
38
- AWS_DEFAULT_REGION=eu-west-1
38
39
- AWS_ENDPOINT_URL=http://sqs:9324
39
40
40
41
kinesis :
41
- image : dlsniper /kinesalite:latest
42
+ image : instructure /kinesalite:latest
42
43
ports :
43
44
- " 4567:4567"
44
45
kinesis-create :
45
- image : infrastructureascode /aws-cli:latest
46
+ image : amazon /aws-cli:latest
46
47
links :
47
48
- kinesis
48
49
entrypoint : sh
49
- command : ./ create-streams.sh
50
+ command : create-streams.sh
50
51
volumes :
51
- - ./scripts/create-streams.sh:/project /create-streams.sh:ro
52
+ - ./scripts/create-streams.sh:/aws /create-streams.sh:ro
52
53
environment :
53
54
- AWS_ACCESS_KEY_ID=local
54
55
- AWS_SECRET_ACCESS_KEY=local
55
56
- AWS_DEFAULT_REGION=eu-west-1
56
57
- AWS_ENDPOINT_URL=http://kinesis:4567
57
58
s3 :
58
- image : minio/minio:RELEASE.2020-06-14T18-32-17Z
59
+ image : minio/minio:latest
59
60
command : server /data
60
61
ports :
61
62
- " 9000:9000"
@@ -68,13 +69,13 @@ services:
68
69
- AWS_ENDPOINT_URL=http://s3:9000
69
70
70
71
s3-create :
71
- image : infrastructureascode /aws-cli:latest
72
+ image : amazon /aws-cli:latest
72
73
links :
73
74
- s3
74
75
entrypoint : sh
75
- command : ./ create-buckets.sh
76
+ command : create-buckets.sh
76
77
volumes :
77
- - ./scripts/create-buckets.sh:/project /create-buckets.sh:ro
78
+ - ./scripts/create-buckets.sh:/aws /create-buckets.sh:ro
78
79
environment :
79
80
- AWS_ACCESS_KEY_ID=local
80
81
- AWS_SECRET_ACCESS_KEY=locallocal
0 commit comments