-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (30 loc) · 906 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (30 loc) · 906 Bytes
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
---
services:
#######################################
# The redis-store backend caching service.
#######################################
redis-store:
command:
- /opt/bitnami/scripts/redis/run.sh
- --maxmemory
- 256mb
container_name: redis-store
environment:
ALLOW_EMPTY_PASSWORD: "no"
REDIS_DISABLE_COMMANDS: FLUSHDB,FLUSHALL,CONFIG
REDIS_PASSWORD: k7oMs2G5bc4mRN45jPZjLBZxuMFrCLahvPn648Zwq1lT41gSYZqapBRnSF2L995FaYcZBz8c7xkKXku94HeReDgdwBu1N4CzgfQ94Z504hjfzrST1u0idVkbXe8ust
hostname: redis-store
image: bitnami/redis:latest
# networks:
# hypercache-redis-store-net: null
#######################################
ports:
- mode: ingress
target: 6379
published: 6379
protocol: tcp
# Networks section
networks:
hypercache-redis-store-net:
internal: true
name: hypercache-redis-store-net