[bitnami/redis] Release 7.2.4-debian-11-r2 (#54795)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
24576d9e10
commit
25b180cc28
|
|
@ -7,10 +7,10 @@ ARG TARGETARCH
|
|||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2024-01-15T16:23:51Z" \
|
||||
org.opencontainers.image.created="2024-01-15T18:49:17Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="7.2.4-debian-11-r1" \
|
||||
org.opencontainers.image.ref.name="7.2.4-debian-11-r2" \
|
||||
org.opencontainers.image.title="redis" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="7.2.4"
|
||||
|
|
|
|||
|
|
@ -179,40 +179,40 @@ docker-compose up -d
|
|||
|
||||
#### Customizable environment variables
|
||||
|
||||
| Name | Description | Default Value |
|
||||
|-----------------------------------|--------------------------------------------------|--------------------------------------------|
|
||||
| `$REDIS_DATA_DIR` | Redis data directory | `${REDIS_VOLUME_DIR}/data` |
|
||||
| `$REDIS_OVERRIDES_FILE` | Redis config overrides file | `${REDIS_MOUNTED_CONF_DIR}/overrides.conf` |
|
||||
| `$REDIS_DATABASE` | Default Redis database | `redis` |
|
||||
| `$REDIS_AOF_ENABLED` | Enable AOF | `yes` |
|
||||
| `$REDIS_RDB_POLICY_DISABLED` | Allows to enable RDP policy persistence | `no` |
|
||||
| `$REDIS_MASTER_PORT_NUMBER` | Redis master host port (used by slaves) | `6379` |
|
||||
| `$REDIS_PORT_NUMBER` | Redis port number | `$REDIS_DEFAULT_PORT_NUMBER` |
|
||||
| `$REDIS_ALLOW_REMOTE_CONNECTIONS` | Allow remote connection to the service | `yes` |
|
||||
| `$ALLOW_EMPTY_PASSWORD` | Allow password-less access | `no` |
|
||||
| `$REDIS_TLS_ENABLED` | Enable TLS | `no` |
|
||||
| `$REDIS_TLS_PORT_NUMBER` | Redis TLS port (requires REDIS_ENABLE_TLS=yes) | `6379` |
|
||||
| `$REDIS_TLS_AUTH_CLIENTS` | Enable Redis TLS client authentication | `yes` |
|
||||
| `$REDIS_DISABLE_SERVICE` | Whether to disable the Redis service by default. | `no` |
|
||||
| `$REDIS_SENTINEL_PORT_NUMBER` | Redis Sentinel host port (used by slaves) | `26379` |
|
||||
| Name | Description | Default Value |
|
||||
|----------------------------------|--------------------------------------------------|--------------------------------------------|
|
||||
| `REDIS_DATA_DIR` | Redis data directory | `${REDIS_VOLUME_DIR}/data` |
|
||||
| `REDIS_OVERRIDES_FILE` | Redis config overrides file | `${REDIS_MOUNTED_CONF_DIR}/overrides.conf` |
|
||||
| `REDIS_DATABASE` | Default Redis database | `redis` |
|
||||
| `REDIS_AOF_ENABLED` | Enable AOF | `yes` |
|
||||
| `REDIS_RDB_POLICY_DISABLED` | Allows to enable RDP policy persistence | `no` |
|
||||
| `REDIS_MASTER_PORT_NUMBER` | Redis master host port (used by slaves) | `6379` |
|
||||
| `REDIS_PORT_NUMBER` | Redis port number | `$REDIS_DEFAULT_PORT_NUMBER` |
|
||||
| `REDIS_ALLOW_REMOTE_CONNECTIONS` | Allow remote connection to the service | `yes` |
|
||||
| `ALLOW_EMPTY_PASSWORD` | Allow password-less access | `no` |
|
||||
| `REDIS_TLS_ENABLED` | Enable TLS | `no` |
|
||||
| `REDIS_TLS_PORT_NUMBER` | Redis TLS port (requires REDIS_ENABLE_TLS=yes) | `6379` |
|
||||
| `REDIS_TLS_AUTH_CLIENTS` | Enable Redis TLS client authentication | `yes` |
|
||||
| `REDIS_DISABLE_SERVICE` | Whether to disable the Redis service by default. | `no` |
|
||||
| `REDIS_SENTINEL_PORT_NUMBER` | Redis Sentinel host port (used by slaves) | `26379` |
|
||||
|
||||
#### Read-only environment variables
|
||||
|
||||
| Name | Description | Value |
|
||||
|------------------------------|---------------------------------------|---------------------------------|
|
||||
| `$REDIS_VOLUME_DIR` | Persistence base directory | `/bitnami/redis` |
|
||||
| `$REDIS_BASE_DIR` | Redis installation directory | `${BITNAMI_ROOT_DIR}/redis` |
|
||||
| `$REDIS_CONF_DIR` | Redis configuration directory | `${REDIS_BASE_DIR}/etc` |
|
||||
| `$REDIS_MOUNTED_CONF_DIR` | Redis mounted configuration directory | `${REDIS_BASE_DIR}/mounted-etc` |
|
||||
| `$REDIS_CONF_FILE` | Redis configuration file | `${REDIS_CONF_DIR}/redis.conf` |
|
||||
| `$REDIS_LOG_DIR` | Redis logs directory | `${REDIS_BASE_DIR}/logs` |
|
||||
| `$REDIS_LOG_FILE` | Redis log file | `${REDIS_LOG_DIR}/redis.log` |
|
||||
| `$REDIS_TMP_DIR` | Redis temporary directory | `${REDIS_BASE_DIR}/tmp` |
|
||||
| `$REDIS_PID_FILE` | Redis PID file | `${REDIS_TMP_DIR}/redis.pid` |
|
||||
| `$REDIS_BIN_DIR` | Redis executables directory | `${REDIS_BASE_DIR}/bin` |
|
||||
| `$REDIS_DAEMON_USER` | Redis system user | `redis` |
|
||||
| `$REDIS_DAEMON_GROUP` | Redis system group | `redis` |
|
||||
| `$REDIS_DEFAULT_PORT_NUMBER` | Redis port number (Build time) | `6379` |
|
||||
| Name | Description | Value |
|
||||
|-----------------------------|---------------------------------------|---------------------------------|
|
||||
| `REDIS_VOLUME_DIR` | Persistence base directory | `/bitnami/redis` |
|
||||
| `REDIS_BASE_DIR` | Redis installation directory | `${BITNAMI_ROOT_DIR}/redis` |
|
||||
| `REDIS_CONF_DIR` | Redis configuration directory | `${REDIS_BASE_DIR}/etc` |
|
||||
| `REDIS_MOUNTED_CONF_DIR` | Redis mounted configuration directory | `${REDIS_BASE_DIR}/mounted-etc` |
|
||||
| `REDIS_CONF_FILE` | Redis configuration file | `${REDIS_CONF_DIR}/redis.conf` |
|
||||
| `REDIS_LOG_DIR` | Redis logs directory | `${REDIS_BASE_DIR}/logs` |
|
||||
| `REDIS_LOG_FILE` | Redis log file | `${REDIS_LOG_DIR}/redis.log` |
|
||||
| `REDIS_TMP_DIR` | Redis temporary directory | `${REDIS_BASE_DIR}/tmp` |
|
||||
| `REDIS_PID_FILE` | Redis PID file | `${REDIS_TMP_DIR}/redis.pid` |
|
||||
| `REDIS_BIN_DIR` | Redis executables directory | `${REDIS_BASE_DIR}/bin` |
|
||||
| `REDIS_DAEMON_USER` | Redis system user | `redis` |
|
||||
| `REDIS_DAEMON_GROUP` | Redis system group | `redis` |
|
||||
| `REDIS_DEFAULT_PORT_NUMBER` | Redis port number (Build time) | `6379` |
|
||||
|
||||
### Disabling Redis(R) commands
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue