update commit

This commit is contained in:
2024-10-28 16:28:49 +09:00
parent 1ab0d83941
commit 93dfd1c8b8
325 changed files with 6012 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
"Redis": "127.0.0.1:6379",
"Dynamodb": "http://localhost:8000",
"Kafka": "localhost:9092"
}

View File

@@ -0,0 +1,26 @@
version: '2'
services:
consul:
image: consul:latest
ports:
- "8500:8500"
consulsetup:
image: consul:latest
depends_on:
- consul
restart: "no"
volumes:
- ./config/consul_config.json:/etc/consul_config.json
entrypoint:
["sh", "-c", "curl --request PUT --data @/etc/consul_config.json http://consul:8500/v1/kv/config"]
redis:
image: redis:latest
ports:
- "6379:6379"
dynamodb:
image: amazon/dynamodb-local
ports:
- "8000:8000"