Files
JChargePointProtocol/docker/docker-compose.redis-standalone.yml

26 lines
547 B
YAML
Raw Normal View History

2024-10-08 09:38:54 +08:00
#
2025-03-04 10:42:17 +08:00
# 开源代码,仅供学习和交流研究使用,商用请联系三丙
# 微信mohan_88888
# 抖音:程序员三丙
2026-06-10 14:26:04 +08:00
# 付费课程https://www.bilibili.com/cheese/play/ss942400790
2024-10-08 09:38:54 +08:00
#
networks:
sanbing-network:
driver: bridge
name: sanbing-network
ipam:
config:
- subnet: 10.10.0.0/24
services:
redis:
image: registry.cn-hangzhou.aliyuncs.com/sanbing/redis:7.4
restart: always
networks:
- sanbing-network
ports:
- '6379:6379'
environment:
- 'REDIS_PASSWORD=sanbing'