合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
~~~javascript docker run [OPTIONS] IMAGE[:TAG|@DIGEST] [COMMAND] [ARG...] ~~~ ``` docker pull redis wget http://download.redis.io/redis-stable/redis.conf mkdir /data/redis docker run -p 6379:6379 --name redis --restart=always -v /config/redis/redis.conf:/etc/redis/redis.conf -v /data/redis:/data -d redis redis-server /etc/redis/redis.conf --appendonly yes ``` -d: 后台运行,并返回容器ID redis:指定镜像 运行命令:redis redis-server /etc/redis/redis.conf --appendonly yes --restart always