feat: change maxmemory from env during deploy
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
parent
c8728df6e8
commit
2eaa22ae1b
2 changed files with 2 additions and 7 deletions
|
@ -6,7 +6,7 @@ pipeline:
|
|||
username: sutty
|
||||
repo: registry.nulo.in/sutty/redis
|
||||
tags:
|
||||
- ${ALPINE_VERSION}-${MAX_MEMORY}
|
||||
- ${ALPINE_VERSION}
|
||||
- latest
|
||||
build_args:
|
||||
- MAX_MEMORY=${MAX_MEMORY}
|
||||
|
@ -23,12 +23,6 @@ matrix:
|
|||
- MAX_MEMORY: "500mb"
|
||||
ALPINE_VERSION: "3.17.0"
|
||||
REDIS_VERSION: "7.0.5"
|
||||
- MAX_MEMORY: "100mb"
|
||||
ALPINE_VERSION: "3.17.0"
|
||||
REDIS_VERSION: "7.0.5"
|
||||
- MAX_MEMORY: "500mb"
|
||||
ALPINE_VERSION: "3.16.3"
|
||||
REDIS_VERSION: "7.0.4"
|
||||
- MAX_MEMORY: "100mb"
|
||||
ALPINE_VERSION: "3.16.3"
|
||||
REDIS_VERSION: "7.0.4"
|
||||
|
|
|
@ -5,6 +5,7 @@ run=/run/redis
|
|||
case $1 in
|
||||
start)
|
||||
install -dm 750 -o redis -g redis $run
|
||||
sed -re "s/^(maxmemory ).*/\1${MAX_MEMORY}/" -i /etc/redis.conf
|
||||
su-exec redis /usr/bin/redis-server /etc/redis.conf
|
||||
;;
|
||||
stop)
|
||||
|
|
Loading…
Reference in a new issue