thingsboard/docker/docker-compose.valkey-sentinel.volumes.yml

39 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2023-06-01 14:47:47 +03:00
#
2025-02-25 09:39:16 +02:00
# Copyright © 2016-2025 The Thingsboard Authors
2023-06-01 14:47:47 +03:00
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
services:
2025-05-21 16:14:29 +03:00
# Valkey sentinel
valkey-primary:
2023-06-01 14:47:47 +03:00
volumes:
2025-05-21 16:14:29 +03:00
- valkey-sentinel-data-primary:/bitnami/valkey/data
valkey-replica:
2023-06-01 14:47:47 +03:00
volumes:
2025-05-21 16:14:29 +03:00
- valkey-sentinel-data-replica:/bitnami/valkey/data
valkey-sentinel:
2023-06-01 14:47:47 +03:00
volumes:
2025-05-21 16:14:29 +03:00
- valkey-sentinel-data-sentinel:/bitnami/valkey/data
2023-06-01 14:47:47 +03:00
volumes:
2025-05-21 16:14:29 +03:00
valkey-sentinel-data-primary:
2023-06-01 14:47:47 +03:00
external:
name: ${VALKEY_SENTINEL_DATA_VOLUME_PRIMARY}
2025-05-21 16:14:29 +03:00
valkey-sentinel-data-replica:
2023-06-01 14:47:47 +03:00
external:
name: ${VALKEY_SENTINEL_DATA_VOLUME_REPLICA}
2025-05-21 16:14:29 +03:00
valkey-sentinel-data-sentinel:
2023-06-01 14:47:47 +03:00
external:
2025-05-21 16:14:29 +03:00
name: ${VALKEY_SENTINEL_DATA_VOLUME_SENTINEL}