-
Hello! From the docs: # Download Official Dragonfly Docker Compose File
wget https://raw.githubusercontent.com/dragonflydb/dragonfly/main/contrib/docker/docker-compose.yml
# Launch the Dragonfly Instance
docker compose up -d Where https://raw.githubusercontent.com/dragonflydb/dragonfly/main/contrib/docker/docker-compose.yml is actually: version: '3.8'
services:
dragonfly:
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
ulimits:
memlock: -1
ports:
- "6379:6379"
# For better performance, consider `host` mode instead `port` to avoid docker NAT.
# `host` mode is NOT currently supported in Swarm Mode.
# https://docs.docker.com/compose/compose-file/compose-file-v3/#network_mode
# network_mode: "host"
volumes:
- dragonflydata:/data
volumes:
dragonflydata: My question is... What is exactly Does it imply that my Docker compose would be based on the "latest" version of Dragonfly? I don't feel comfortable about it and didn't find anything in this documentation page to safely use a specific version of Dragonfly and update it by myself whenever I want in my releases processes. :( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @Zer0xxxx , |
Beta Was this translation helpful? Give feedback.
Hello @Zer0xxxx ,
you can use docker versions that correspond to Dragonfly version releases.
For example,
docker.dragonflydb.io/dragonflydb/dragonfly:v1.19.0
. Otherwise the latest version is pulled.