mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-15 03:32:55 -06:00
29 lines
405 B
YAML
29 lines
405 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
container_name: redis
|
|
command: >
|
|
redis-server
|
|
--port 6379
|
|
--appendonly yes
|
|
volumes:
|
|
- evolution_redis:/data
|
|
ports:
|
|
- 6379:6379
|
|
|
|
rebrow:
|
|
image: marian/rebrow
|
|
ports:
|
|
- 5001:5001
|
|
links:
|
|
- redis
|
|
|
|
volumes:
|
|
evolution_redis:
|
|
|
|
networks:
|
|
evolution-net:
|
|
external: true
|