-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.memcache.yml
45 lines (41 loc) · 1.1 KB
/
docker-compose.memcache.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
########################################
# Camunda Platform full development setup
########################################
version: '3.8'
volumes:
certs:
networks:
# Note there are two bridge networks. One for Zeebe and one for IAM. Operate, Tasklist, and Optimize use both
camunda-platform: { }
services:
##########################################
# - Memcached server
##########################################
memcached:
container_name: memcache
image: bitnami/memcached:latest
environment:
- MEMCACHED_CACHE_SIZE=64
- MEMCACHED_MAX_CONNECTIONS=20
- MEMCACHED_THREADS=4
- MEMCACHED_USERNAME=demo
- MEMCACHED_PASSWORD=demo
ports:
- "11211:11211"
ulimits:
nofile:
soft: "65536"
hard: "65536"
networks:
- camunda-cloud
- camunda-platform
##########################################
# - Redis server
##########################################
redis:
container_name: redis
image: 'bitnami/redis:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
networks:
- camunda-platform