Enviar arquivos para "redis"

Commit da stack do Redis.
This commit is contained in:
2025-03-20 20:30:20 +00:00
parent d66c3a76de
commit 2cf0914a06

28
redis/redis-stack.yaml Normal file
View File

@@ -0,0 +1,28 @@
services:
app:
image: redis:latest
command: ["redis-server", "--appendonly", "yes", "--port", "6379"]
volumes:
- redis_data:/data
networks:
- n8n_network
deploy:
mode: replicated
replicas: 1
resources:
limits:
cpus: "0.2"
memory: 512M
placement:
constraints:
- node.role == manager
volumes:
redis_data:
external: true
networks:
n8n_network:
driver: overlay
attachable: true
external: true