You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: "3.5"
|
|
|
|
services:
|
|
kvrocks1:
|
|
image: apache/kvrocks:latest
|
|
container_name: kvrocks1
|
|
hostname: kvrocks1
|
|
command:
|
|
- "--requirepass"
|
|
- "kvrockspass"
|
|
ports:
|
|
- "6666:6666"
|
|
volumes:
|
|
- kvrocks_data:/data
|
|
|
|
volumes:
|
|
kvrocks_data:
|
|
driver_opts:
|
|
type: tmpfs
|
|
device: tmpfs |