mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-30 02:48:27 +08:00
19 lines
525 B
YAML
19 lines
525 B
YAML
version: '3'
|
|
|
|
services:
|
|
redis:
|
|
image: registry.cn-hangzhou.aliyuncs.com/kennylee/redis:3.2
|
|
container_name: "redis-server"
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
#- ./data:/data:z
|
|
- ./conf/redis.conf:/usr/local/etc/redis/redis.conf
|
|
restart: on-failure
|
|
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
|
|
logging:
|
|
driver: 'json-file'
|
|
options:
|
|
max-size: '30m'
|
|
max-file: '1'
|