1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-10-30 23:57:54 +02:00

[Redis] Rename docker-entrypoint.sh to redis-conf.sh

This commit is contained in:
FreddleSpl0it
2024-11-19 14:54:36 +01:00
parent c1903f121d
commit b0de756a7c
2 changed files with 3 additions and 2 deletions

View File

@@ -3,4 +3,5 @@
cat <<EOF > /redis.conf
requirepass $REDISPASS
EOF
exec redis-server /redis.conf

View File

@@ -43,10 +43,10 @@ services:
redis-mailcow:
image: redis:7-alpine
entrypoint: /docker-entrypoint.sh
entrypoint: /redis-conf.sh
volumes:
- redis-vol-1:/data/
- ./data/conf/redis/docker-entrypoint.sh:/docker-entrypoint.sh:z
- ./data/conf/redis/redis-conf.sh:/redis-conf.sh:z
restart: always
depends_on:
- netfilter-mailcow