Skip to content

Commit e138e66

Browse files
authored
Uses instructure/kinesalite and amazon/aws-cli images (#245)
1 parent 5810ec5 commit e138e66

File tree

2 files changed

+22
-20
lines changed

2 files changed

+22
-20
lines changed

docker-compose.test.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,61 @@ version: "3"
22
services:
33

44
dynamodb:
5-
image: cnadiminti/dynamodb-local:latest
5+
image: amazon/dynamodb-local:latest
66
ports:
77
- "8000:8000"
88
dynamodb-create:
9-
image: infrastructureascode/aws-cli:latest
9+
image: amazon/aws-cli:latest
1010
links:
1111
- dynamodb
1212
entrypoint: sh
13-
command: ./create-tables.sh
13+
command: create-tables.sh
1414
volumes:
15-
- ./scripts/create-tables.sh:/project/create-tables.sh:ro
15+
- ./scripts/create-tables.sh:/aws/create-tables.sh:ro
1616
environment:
1717
- AWS_ACCESS_KEY_ID=local
1818
- AWS_SECRET_ACCESS_KEY=local
1919
- AWS_DEFAULT_REGION=eu-west-1
2020
- AWS_ENDPOINT_URL=http://dynamodb:8000
2121

2222
sqs:
23-
image: softwaremill/elasticmq:latest
23+
image: softwaremill/elasticmq-native:latest
2424
ports:
2525
- "9324:9324"
26+
command: "-Dnode-address.host=\"*\""
2627
sqs-create:
27-
image: infrastructureascode/aws-cli:latest
28+
image: amazon/aws-cli:latest
2829
links:
2930
- sqs
3031
entrypoint: sh
31-
command: ./create-queues.sh
32+
command: create-queues.sh
3233
volumes:
33-
- ./scripts/create-queues.sh:/project/create-queues.sh:ro
34+
- ./scripts/create-queues.sh:/aws/create-queues.sh:ro
3435
environment:
3536
- AWS_ACCESS_KEY_ID=local
3637
- AWS_SECRET_ACCESS_KEY=local
3738
- AWS_DEFAULT_REGION=eu-west-1
3839
- AWS_ENDPOINT_URL=http://sqs:9324
3940

4041
kinesis:
41-
image: dlsniper/kinesalite:latest
42+
image: instructure/kinesalite:latest
4243
ports:
4344
- "4567:4567"
4445
kinesis-create:
45-
image: infrastructureascode/aws-cli:latest
46+
image: amazon/aws-cli:latest
4647
links:
4748
- kinesis
4849
entrypoint: sh
49-
command: ./create-streams.sh
50+
command: create-streams.sh
5051
volumes:
51-
- ./scripts/create-streams.sh:/project/create-streams.sh:ro
52+
- ./scripts/create-streams.sh:/aws/create-streams.sh:ro
5253
environment:
5354
- AWS_ACCESS_KEY_ID=local
5455
- AWS_SECRET_ACCESS_KEY=local
5556
- AWS_DEFAULT_REGION=eu-west-1
5657
- AWS_ENDPOINT_URL=http://kinesis:4567
5758
s3:
58-
image: minio/minio:RELEASE.2020-06-14T18-32-17Z
59+
image: minio/minio:latest
5960
command: server /data
6061
ports:
6162
- "9000:9000"
@@ -68,13 +69,13 @@ services:
6869
- AWS_ENDPOINT_URL=http://s3:9000
6970

7071
s3-create:
71-
image: infrastructureascode/aws-cli:latest
72+
image: amazon/aws-cli:latest
7273
links:
7374
- s3
7475
entrypoint: sh
75-
command: ./create-buckets.sh
76+
command: create-buckets.sh
7677
volumes:
77-
- ./scripts/create-buckets.sh:/project/create-buckets.sh:ro
78+
- ./scripts/create-buckets.sh:/aws/create-buckets.sh:ro
7879
environment:
7980
- AWS_ACCESS_KEY_ID=local
8081
- AWS_SECRET_ACCESS_KEY=locallocal

docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
version: "3"
22
services:
33
kinesis:
4-
image: dlsniper/kinesalite:latest
4+
image: instructure/kinesalite:latest
55
ports:
66
- "4567:4567"
77

88
dynamodb:
9-
image: cnadiminti/dynamodb-local:latest
9+
image: amazon/dynamodb-local:latest
1010
ports:
1111
- "8000:8000"
1212

1313
sqs:
14-
image: softwaremill/elasticmq:latest
14+
image: softwaremill/elasticmq-native:latest
1515
ports:
1616
- "9324:9324"
17+
command: "-Dnode-address.host=\"*\""
1718

1819
s3:
19-
image: minio/minio:RELEASE.2020-06-14T18-32-17Z
20+
image: minio/minio:latest
2021
command: server /data
2122
ports:
2223
- "9000:9000"

0 commit comments

Comments
 (0)