Skip to content

Commit

Permalink
[dag inspector] commit the docker-compose.yaml for local enviroments
Browse files Browse the repository at this point in the history
  • Loading branch information
welbon committed Jun 20, 2024
1 parent 4f937ee commit 1991b4b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This composer file is used to configure the local environment for debugging
version: '3.8'

services:
Expand All @@ -19,6 +20,25 @@ services:
ports:
- "9200:9200"

hazelcast:
image: hazelcast/hazelcast:latest
container_name: hazelcast
ports:
- "5701:5701"
environment:
- HZ_CLUSTERNAME=stcscan-hazelcast-cluster
- HZ_NETWORK_JOIN_MULTICAST_ENABLED=false
- HZ_NETWORK_JOIN_TCPIP_ENABLED=true
- HZ_NETWORK_JOIN_TCPIP_MEMBERS=hazelcast
- HZ_CACHE_CODE_CACHE_STATISTICS_ENABLED=true
- HZ_CACHE_CODE_CACHE_EVICTION_SIZE=10000
- HZ_CACHE_CODE_CACHE_EVICTION_MAX_SIZE_POLICY=ENTRY_COUNT
- HZ_CACHE_CODE_CACHE_EVICTION_EVICTION_POLICY=LFU
- HZ_CACHE_SESSION_STATISTICS_ENABLED=true
- HZ_CACHE_SESSION_EVICTION_SIZE=50000
- HZ_CACHE_SESSION_EVICTION_MAX_SIZE_POLICY=ENTRY_COUNT
- HZ_CACHE_SESSION_EVICTION_EVICTION_POLICY=LRU

volumes:
esdata:
driver: local

0 comments on commit 1991b4b

Please sign in to comment.