You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
341 B
22 lines
341 B
3 years ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
command: -jar DynamoDBLocal.jar -sharedDb -dbPath ./data
|
||
|
image: amazon/dynamodb-local:latest
|
||
|
ports:
|
||
|
- 8000:8000
|
||
|
volumes:
|
||
|
- dbdata:/home/dynamodblocal
|
||
|
aws:
|
||
|
depends_on:
|
||
|
- db
|
||
|
image: banst/awscli
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
env_file:
|
||
|
- .env
|
||
|
|
||
|
volumes:
|
||
|
dbdata:
|