first commit

This commit is contained in:
2024-08-22 14:05:05 +09:00
commit 1ab0d83941
34 changed files with 4083 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"