Docker 部署Redis

1
2
3
4
5
6
7
8
9
10
11
12
13
version: '3.1'
services:
redis:
image: redis:6.2
restart: always
container_name: redis # redis 容器的名称
ports:
- "6379:6379"
volumes:
- $PWD/redis/data/:/data
#- $PWD/redis/redis.conf:/usr/local/etc/redis/redis.conf # redis.conf https://redis.io/topics/config
#command:
#/bin/bash -c "redis-server /usr/local/etc/redis/redis.conf"

Docker 部署Redis
https://code-lives.github.io/2023/05/03/redis/
作者
Li Jie
发布于
2023年5月3日
许可协议