mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 15:14:49 -06:00
24 lines
357 B
YAML
24 lines
357 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
networks:
|
|
- evolution-net
|
|
container_name: redis
|
|
command: >
|
|
redis-server --port 6379 --appendonly yes
|
|
volumes:
|
|
- evolution_redis:/data
|
|
ports:
|
|
- 6379:6379
|
|
|
|
volumes:
|
|
evolution_redis:
|
|
|
|
|
|
networks:
|
|
evolution-net:
|
|
name: evolution-net
|
|
driver: bridge
|